diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index f6bc4e7e872e..f80e613e558e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -8,10 +8,6 @@ on: pull_request: branches: - main - paths: - - '**/*.ts' - - '**/*.tsx' - - '.github/workflows/codeql.yml' # This is so that when CodeQL runs on a pull request, it can compare # against the state of the base branch. push: diff --git a/.github/workflows/repo-sync.yml b/.github/workflows/repo-sync.yml index c16d053027a2..f1876b25adfb 100644 --- a/.github/workflows/repo-sync.yml +++ b/.github/workflows/repo-sync.yml @@ -146,14 +146,30 @@ jobs: console.log('Merging the pull request') // Admin merge pull request to avoid squash - await github.rest.pulls.merge({ - owner, - repo, - pull_number, - merge_method: 'merge', - }) - // Error loud here, so no try/catch - console.log('Merged the pull request successfully') + // Retry once per minute for up to 15 minutes to wait for required checks (e.g. CodeQL) + const maxAttempts = 15 + const delay = 60_000 // 1 minute + for (let attempt = 1; attempt <= maxAttempts; attempt++) { + try { + await github.rest.pulls.merge({ + owner, + repo, + pull_number, + merge_method: 'merge', + }) + console.log('Merged the pull request successfully') + break + } catch (mergeError) { + const msg = mergeError.message || mergeError.response?.data?.message || '' + const isRuleViolation = mergeError.status === 405 && + msg.includes('Repository rule violations') + if (!isRuleViolation || attempt === maxAttempts) { + throw mergeError + } + console.log(`Merge blocked by required checks (attempt ${attempt}/${maxAttempts}), retrying in 60s...`) + await new Promise(resolve => setTimeout(resolve, delay)) + } + } - uses: ./.github/actions/slack-alert if: ${{ failure() && github.event_name != 'workflow_dispatch' }} diff --git a/.github/workflows/sync-llms-txt-to-github.yml b/.github/workflows/sync-llms-txt-to-github.yml new file mode 100644 index 000000000000..cce898f3f529 --- /dev/null +++ b/.github/workflows/sync-llms-txt-to-github.yml @@ -0,0 +1,171 @@ +name: Sync llms.txt to github/github + +on: + workflow_dispatch: + push: + branches: + - main + paths: + - 'data/llms-txt-config.yml' + - 'src/workflows/generate-llms-txt.ts' + schedule: + - cron: '20 16 * * 1-5' # Weekdays at ~9:20am Pacific + +permissions: + contents: read + +concurrency: + group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' + cancel-in-progress: true + +jobs: + sync: + name: Sync llms.txt + if: github.repository == 'github/docs-internal' + runs-on: ubuntu-latest + steps: + - name: Checkout docs-internal + uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 + with: + persist-credentials: false + + - uses: ./.github/actions/node-npm-setup + + - name: Generate llms.txt + env: + DOCS_BOT_PAT_BASE: ${{ secrets.DOCS_BOT_PAT_BASE }} + run: | + echo "Generating llms.txt from page catalog and popularity data..." + npm run generate-llms-txt --silent > /tmp/llms.txt + echo "Generated llms.txt ($(wc -l < /tmp/llms.txt) lines, $(wc -c < /tmp/llms.txt) bytes)" + + - name: Fetch current llms.txt from github/github + id: fetch + env: + GH_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }} + run: | + echo "Fetching current public/llms.txt from github/github..." + if gh api repos/github/github/contents/public/llms.txt \ + --jq '.content' 2>/dev/null | base64 -d > /tmp/current.txt; then + echo "Fetched current file ($(wc -l < /tmp/current.txt) lines)" + else + echo "No existing file found (first run)" + rm -f /tmp/current.txt + fi + + - name: Diff generated vs current + id: diff + run: | + echo "Comparing generated llms.txt against current..." + if [ -f /tmp/current.txt ] && diff -q /tmp/llms.txt /tmp/current.txt > /dev/null 2>&1; then + echo "No changes detected, skipping push" + echo "changed=false" >> "$GITHUB_OUTPUT" + else + echo "Changes detected:" + diff --unified=0 /tmp/current.txt /tmp/llms.txt | head -30 || true + echo "changed=true" >> "$GITHUB_OUTPUT" + fi + + - name: Ensure sync branch exists in github/github + if: steps.diff.outputs.changed == 'true' + env: + GH_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }} + run: | + BRANCH="auto/sync-llms-txt" + REPO="github/github" + + echo "Checking if branch '$BRANCH' exists..." + BRANCH_SHA=$(gh api "repos/$REPO/git/ref/heads/$BRANCH" --jq '.object.sha' 2>/dev/null || true) + if [ -n "$BRANCH_SHA" ]; then + echo "Branch exists at $BRANCH_SHA" + else + echo "Branch does not exist, creating from default branch..." + DEFAULT_BRANCH=$(gh api "repos/$REPO" --jq '.default_branch') + BASE_SHA=$(gh api "repos/$REPO/git/ref/heads/$DEFAULT_BRANCH" --jq '.object.sha') + gh api "repos/$REPO/git/refs" \ + --method POST \ + -f ref="refs/heads/$BRANCH" \ + -f sha="$BASE_SHA" + echo "Created branch from $DEFAULT_BRANCH at $BASE_SHA" + fi + + - name: Commit llms.txt to github/github + if: steps.diff.outputs.changed == 'true' + env: + GH_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }} + run: | + BRANCH="auto/sync-llms-txt" + REPO="github/github" + CONTENT=$(base64 -w 0 /tmp/llms.txt) + + echo "Checking for existing file SHA on branch..." + EXISTING_SHA=$(gh api "repos/$REPO/contents/public/llms.txt?ref=$BRANCH" \ + --jq '.sha' 2>/dev/null || true) + if [ -n "$EXISTING_SHA" ]; then + echo "Existing file SHA: $EXISTING_SHA" + else + echo "No existing file on branch (new file)" + fi + + echo "Committing llms.txt to $REPO/$BRANCH..." + COMMIT_ARGS=(-f "message=Sync llms.txt from docs.github.com" + -f "content=$CONTENT" + -f "branch=$BRANCH") + if [ -n "$EXISTING_SHA" ]; then + COMMIT_ARGS+=(-f "sha=$EXISTING_SHA") + fi + gh api "repos/$REPO/contents/public/llms.txt" \ + --method PUT \ + "${COMMIT_ARGS[@]}" --jq '.commit.sha' + echo "Committed successfully" + + - name: Create PR if needed + if: steps.diff.outputs.changed == 'true' + env: + GH_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }} + run: | + BRANCH="auto/sync-llms-txt" + REPO="github/github" + + echo "Checking for existing PR from '$BRANCH'..." + EXISTING_PR=$(gh pr list --repo "$REPO" --head "$BRANCH" \ + --json number --jq '.[0].number' 2>/dev/null || true) + if [ -n "$EXISTING_PR" ]; then + echo "PR #$EXISTING_PR already exists, updated with new commit" + exit 0 + fi + + RUN_URL="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}" + DEFAULT_BRANCH=$(gh api "repos/$REPO" --jq '.default_branch') + + PR_BODY="The [sync-llms-txt workflow]($RUN_URL) generated this PR. + + Updates \`public/llms.txt\` served at \`github.com/llms.txt\`. The docs-internal script builds this file from the page catalog and popularity data. + + No feature flags. Static file in \`public/\`, no code changes. + + " + + echo "Creating PR..." + gh pr create \ + --repo "$REPO" \ + --title "Sync llms.txt from docs.github.com" \ + --body "$PR_BODY" \ + --head "$BRANCH" \ + --base "$DEFAULT_BRANCH" \ + --label "docs" + echo "PR created successfully" + + - uses: ./.github/actions/slack-alert + if: ${{ failure() && github.event_name != 'workflow_dispatch' }} + with: + slack_channel_id: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }} + slack_token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 582140867aad..e73e53f2dd1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Docs changelog +**2 March 2026** + +We've added an article about the new `/research` slash command in Copilot CLI: + +[Researching with GitHub Copilot CLI](https://docs.github.com/copilot/concepts/agents/copilot-cli/research) + +
+ +**27 February 2026** + +We've extended the reference information for Copilot CLI, adding much more detail. See [GitHub Copilot CLI command reference](https://docs.github.com/en/copilot/reference/cli-command-reference#custom-agents-reference). + +
+ **25 February 2026** We've added many new articles to coincide with the [general availability release](https://github.blog/changelog/2026-02-25-github-copilot-cli-is-now-generally-available/) of Copilot CLI. These include: diff --git a/content/code-security/concepts/code-scanning/codeql/about-codeql-workspaces.md b/content/code-security/concepts/code-scanning/codeql/about-codeql-workspaces.md index e31017373b11..139d83abc532 100644 --- a/content/code-security/concepts/code-scanning/codeql/about-codeql-workspaces.md +++ b/content/code-security/concepts/code-scanning/codeql/about-codeql-workspaces.md @@ -1,7 +1,7 @@ --- title: About CodeQL workspaces shortTitle: CodeQL workspaces -intro: '{% data variables.product.prodname_codeql %} workspaces allow you to develop and maintain a group of {% data variables.product.prodname_codeql %} packs that depend on each other.' +intro: '{% data variables.product.prodname_codeql %} workspaces let you develop and maintain multiple related {% data variables.product.prodname_codeql %} packs together, resolving dependencies between them directly from source.' product: '{% data reusables.gated-features.codeql %}' versions: fpt: '*' @@ -22,63 +22,39 @@ contentType: concepts {% data reusables.code-scanning.codeql-action-version-ghes %} -You use a {% data variables.product.prodname_codeql %} workspace when you want to group multiple {% data variables.product.prodname_codeql %} packs together. A typical use case for a {% data variables.product.prodname_codeql %} workspace is to develop a set of {% data variables.product.prodname_codeql %} library and query packs that are mutually dependent. For more information on {% data variables.product.prodname_codeql %} packs, see [AUTOTITLE](/code-security/codeql-cli/getting-started-with-the-codeql-cli/customizing-analysis-with-codeql-packs). +A {% data variables.product.prodname_codeql %} workspace is typically used to develop a set of library and query packs that depend on each other. When you use a {% data variables.product.prodname_codeql %} workspace, all the {% data variables.product.prodname_codeql %} packs in the workspace are available as _source dependencies_ for each other when you run a {% data variables.product.prodname_codeql %} command that resolves queries. This makes it easier to develop, maintain, and publish multiple, related {% data variables.product.prodname_codeql %} packs. For more information on {% data variables.product.prodname_codeql %} packs, see [AUTOTITLE](/code-security/codeql-cli/getting-started-with-the-codeql-cli/customizing-analysis-with-codeql-packs). -The main benefit of a {% data variables.product.prodname_codeql %} workspace is that it makes it easier for you to develop and maintain multiple {% data variables.product.prodname_codeql %} packs. When you use a {% data variables.product.prodname_codeql %} workspace, all the {% data variables.product.prodname_codeql %} packs in the workspace are available as _source dependencies_ for each other when you run a {% data variables.product.prodname_codeql %} command that resolves queries. This makes it easier to develop, maintain, and publish multiple, related {% data variables.product.prodname_codeql %} packs. +Workspaces are commonly stored in a single Git repository so that related packs can be developed and published together. -In most cases, you should store the {% data variables.product.prodname_codeql %} workspace and the {% data variables.product.prodname_codeql %} packs contained in it in one git repository. This makes it easier to share your {% data variables.product.prodname_codeql %} development environment. - -## The `codeql-workspace.yml` file - -A {% data variables.product.prodname_codeql %} workspace is defined by a `codeql-workspace.yml` yaml file. This file contains a `provide` block, and optionally `ignore` and `registries` blocks. - -* The `provide` block contains a list of glob patterns that define the {% data variables.product.prodname_codeql %} packs that are available in the workspace. - -* The `ignore` block contains a list of glob patterns that define {% data variables.product.prodname_codeql %} packs that are not available in the workspace. - -* The `registries` block contains a list of GHES URLs and package patterns that control which container registry is used for publishing {% data variables.product.prodname_codeql %} packs. For more information, see [AUTOTITLE](/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/publishing-and-using-codeql-packs#working-with-codeql-packs-on-ghes). - -Each entry in the `provide` or `ignore` section must map to the location of a `qlpack.yml` file. All glob patterns are defined relative to the directory that contains the workspace file. For a list of patterns accepted in this file, see [@actions/glob](https://github.com/actions/toolkit/tree/main/packages/glob#patterns). - -For example, the following `codeql-workspace.yml` file defines a workspace that contains all the {% data variables.product.prodname_codeql %} packs recursively found in the `codeql-packs` directory, except for the packs in the `experimental` directory. The `registries` block specifies that `codeql/\*` packs should be downloaded from `https://ghcr.io/v2/`, which is {% data variables.product.prodname_dotcom %}’s default container registry. All other packs should be downloaded from and published to the registry at `GHE_HOSTNAME`. - -```yaml -provide: - - "*/codeql-packs/**/qlpack.yml" -ignore: - - "*/codeql-packs/**/experimental/**/qlpack.yml" - -registries: - - packages: 'codeql/*' - url: https://ghcr.io/v2/ - - - packages: '*' - url: https://containers.GHE_HOSTNAME/v2/ -``` +## Source dependencies -To verify that your `codeql-workspace.yml` file includes the {% data variables.product.prodname_codeql %} packs that you expect, run the `codeql pack ls` command in the same directory as your workspace. The result of the command is a list of all {% data variables.product.prodname_codeql %} packs in the workspace. +In a {% data variables.product.prodname_codeql %} workspace, all packs included in the workspace are treated as **source dependencies** of each other. This means they are resolved directly from the local file system rather than from the {% data variables.product.prodname_codeql %} package cache. -## Source dependencies +Because workspace packs resolve from source: -Source dependencies are {% data variables.product.prodname_codeql %} packs that are resolved from the local file system outside of the {% data variables.product.prodname_codeql %} package cache. These dependencies can be in the same {% data variables.product.prodname_codeql %} workspace, or specified as a path option using the `--additional-packs` argument. When you compile and run queries locally, source dependencies override any dependencies found in the {% data variables.product.prodname_codeql %} package cache as well as version constraints defined in the `qlpack.yml`. All references to {% data variables.product.prodname_codeql %} packs in the same workspace are resolved as source dependencies. +* Local changes in one pack are immediately visible to other packs in the workspace. +* Dependencies found in the workspace override versions in the package cache. +* Version constraints in `qlpack.yml` files are ignored for workspace dependencies, since the version is determined by the workspace content. -This is particularly useful in the following situations: +This behavior is particularly useful when developing multiple related packs at the same time. For example: -* One of the dependencies of the query pack you are running is not yet published. Resolving from source is the only way to reference that pack. +* A dependency has not yet been published and exists only locally. +* You are making coordinated changes across several packs and need them to resolve against each other during testing. -* You are making changes to multiple packs at the same time and want to test them together. Resolving from source ensures that you are using the version of the pack with your changes in it. +Outside of a workspace, dependencies are resolved from the package cache and must match the version constraints defined in `qlpack.yml`. Inside a workspace, resolution prioritizes local source content instead. ## {% data variables.product.prodname_codeql %} workspaces and query resolution -All {% data variables.product.prodname_codeql %} packs in a workspace are available as source dependencies for each other when you run any {% data variables.product.prodname_codeql %} command that resolves queries or packs. For example, when you run `codeql pack install` in a pack directory in a workspace, any dependency that can be found in the workspace will be used instead of downloading that dependency to the package cache and adding it to the `codeql-pack.lock.yml` file. For more information, see [AUTOTITLE](/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/creating-and-working-with-codeql-packs#adding-and-installing-dependencies). +The workspace dependency model affects how packs are installed and published. -Similarly, when you publish a {% data variables.product.prodname_codeql %} query pack to the {% data variables.product.prodname_dotcom %} container registry using `codeql pack publish` the command will always use the dependencies from the workspace instead of using dependencies found in the local package cache. +* During installation, dependencies found in the workspace are not downloaded into the package cache and are not written to the `codeql-pack.lock.yml` file. +* During publishing, dependencies provided by the workspace are bundled using their local source content rather than versions from the package cache. -This ensures that any local changes you make to a query library in a dependency are automatically reflected in any query packs you publish from that workspace. +For example, running `codeql pack install` in a pack directory within a workspace uses any dependencies found in the workspace instead of downloading them into the package cache or recording them in the `codeql-pack.lock.yml` file. See [AUTOTITLE](/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/creating-and-working-with-codeql-packs#adding-and-installing-dependencies). ### Example -Consider the following `codeql-workspace.yml` file: +A {% data variables.product.prodname_codeql %} workspace is defined by a YAML file named `codeql-workspace.yml`. Consider the following `codeql-workspace.yml` file: ```yaml provide: @@ -103,7 +79,7 @@ dependencies: codeql/cpp-all: ~0.2.0 ``` -Notice that the `dependencies` block for the {% data variables.product.prodname_codeql %} query pack, `my-company/my-queries`, specifies `"*"` as the version of the library pack. Since the library pack is already defined as a source dependency in `codeql-workspace.yml`, the library pack’s content is always resolved from inside the workspace. Any version constraint you define will be ignored in this case. We recommend that you use `"*"` for source dependencies to make it clear that the version is inherited from the workspace. +Notice that the `dependencies` block for the {% data variables.product.prodname_codeql %} query pack, `my-company/my-queries`, specifies `"*"` as the version of the library pack. Since the library pack is already defined as a source dependency in `codeql-workspace.yml`, the library pack’s content is always resolved from inside the workspace. Any version constraint you define will be ignored in this case. Using `"*"` for source dependencies makes it explicit that the version is inherited from the workspace. When you execute `codeql pack install` from the query pack directory, an appropriate version of `codeql/cpp-all` is downloaded to the local package cache. Also, a `codeql-pack.lock.yml` file is created that contains the resolved version of `codeql/cpp-all`. The lock file won’t contain an entry for `my-company/my-library` since it is resolved from source dependencies. The `codeql-pack.lock.yml` file will look something like this: @@ -115,6 +91,36 @@ dependencies: When you execute `codeql pack publish` from the query pack directory, the `codeql/cpp-all` dependency from the package cache and the `my-company/my-library` from the workspace are bundled with `my-company/my-queries` and published to the {% data variables.product.prodname_dotcom %} container registry. +## Example of a `codeql-workspace.yml` file + +A {% data variables.product.prodname_codeql %} workspace is defined by a YAML file named `codeql-workspace.yml`. This file contains a `provide` block, and optionally `ignore` and `registries` blocks. + +* The `provide` block contains a list of glob patterns that define the {% data variables.product.prodname_codeql %} packs that are available in the workspace. + +* The `ignore` block contains a list of glob patterns that define {% data variables.product.prodname_codeql %} packs that are not available in the workspace. + +* The `registries` block contains a list of GHES URLs and package patterns that control which container registry is used for publishing {% data variables.product.prodname_codeql %} packs. See [AUTOTITLE](/code-security/codeql-cli/using-the-advanced-functionality-of-the-codeql-cli/publishing-and-using-codeql-packs#working-with-codeql-packs-on-ghes). + +Each entry in the `provide` or `ignore` section must map to the location of a `qlpack.yml` file. All glob patterns are defined relative to the directory that contains the workspace file. For a list of patterns accepted in this file, see [@actions/glob](https://github.com/actions/toolkit/tree/main/packages/glob#patterns). + +For example, the following `codeql-workspace.yml` file defines a workspace that contains all the {% data variables.product.prodname_codeql %} packs recursively found in the `codeql-packs` directory, except for the packs in the `experimental` directory. The `registries` block specifies that `codeql/\*` packs should be downloaded from `https://ghcr.io/v2/`, which is {% data variables.product.prodname_dotcom %}’s default container registry. All other packs should be downloaded from and published to the registry at `GHE_HOSTNAME`. + +```yaml +provide: + - "*/codeql-packs/**/qlpack.yml" +ignore: + - "*/codeql-packs/**/experimental/**/qlpack.yml" + +registries: + - packages: 'codeql/*' + url: https://ghcr.io/v2/ + + - packages: '*' + url: https://containers.GHE_HOSTNAME/v2/ +``` + +You can list the packs included in a workspace by running `codeql pack ls` in the workspace directory. + ## Using `${workspace}` as a version range in `qlpack.yml` files {% data variables.product.prodname_codeql %} packs in a workspace can use the special `${workspace}`, `~${workspace}`, and `^${workspace}` version range placeholders. These placeholders indicate that this pack depends on the version of the specified pack that is currently in the workspace. This placeholder is typically used for dependencies inside of library packs to ensure that when they are published, the dependencies in their `qlpack.yml` file reflect the state of the workspace when they were published. diff --git a/content/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/creating-managing-security-campaigns.md b/content/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/creating-managing-security-campaigns.md index d54d9b3d6022..9ad8b77d796d 100644 --- a/content/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/creating-managing-security-campaigns.md +++ b/content/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/creating-managing-security-campaigns.md @@ -28,8 +28,8 @@ Security campaigns are created and managed from the **Security** tab for your or You choose the alerts that you want to include in the campaign by using either: - * **Campaign templates**: Campaign templates contain filters for the most common alert selections. {% ifversion security-campaigns-autofix %}For code campaigns, they also all include the requirement that {% data variables.copilot.copilot_autofix %} is supported for all the alert types included (that is, `autofix:supported`).{% endif %} - * **Custom filters**: Creating a campaign using custom filters lets you define your own criteria for selecting alerts for the campaign, and lets you tailor your campaign to your organization's specific needs. +* **Campaign templates**: Campaign templates contain filters for the most common alert selections. {% ifversion security-campaigns-autofix %}For code campaigns, they also all include the requirement that {% data variables.copilot.copilot_autofix %} is supported for all the alert types included (that is, `autofix:supported`).{% endif %} +* **Custom filters**: Creating a campaign using custom filters lets you define your own criteria for selecting alerts for the campaign, and lets you tailor your campaign to your organization's specific needs. {% data reusables.code-scanning.campaigns-api %} diff --git a/content/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/filtering-alerts-in-security-overview.md b/content/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/filtering-alerts-in-security-overview.md index df80b40f6d4e..1d5ef12c875a 100644 --- a/content/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/filtering-alerts-in-security-overview.md +++ b/content/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/filtering-alerts-in-security-overview.md @@ -28,7 +28,6 @@ You can combine multiple filters to narrow your results. For example, you can sh For a complete list of available filters, see [AUTOTITLE](/code-security/reference/security-alert-management/available-filters-for-security-overview). - > [!NOTE] > {% data reusables.security-overview.information-varies-GHAS %} diff --git a/content/code-security/tutorials/secure-your-organization/best-practice-fix-alerts-at-scale.md b/content/code-security/tutorials/secure-your-organization/best-practice-fix-alerts-at-scale.md index 9b467c0f544b..2666298dfdab 100644 --- a/content/code-security/tutorials/secure-your-organization/best-practice-fix-alerts-at-scale.md +++ b/content/code-security/tutorials/secure-your-organization/best-practice-fix-alerts-at-scale.md @@ -1,7 +1,7 @@ --- -title: Best practices for fixing security alerts at scale +title: Running a security campaign to fix alerts at scale shortTitle: Fix alerts at scale -intro: Guidance on how to create successful security campaigns that engage developers and help them grow their understanding of secure coding. +intro: Launch a focused security campaign to remediate a specific class of security alerts, such as cross-site scripting (XSS), across your organization. allowTitleToDifferFromFilename: true product: '{% data reusables.gated-features.security-campaigns %}' audience: @@ -19,105 +19,115 @@ redirect_from: - /code-security/securing-your-organization/fixing-security-alerts-at-scale --- -## Elements of a successful security campaign +## Launching your first campaign -Successful security campaigns to fix alerts at scale have many features in common, including: +In this tutorial, you’ll plan and run your first organization-wide security campaign focused on XSS alerts. Along the way, you’ll learn how to select the right alerts, prepare developers for success, and structure a campaign that drives meaningful improvements in your security posture. -* Selecting a related group of security alerts for remediation.{% ifversion security-campaigns-autofix %} -* For code campaigns, using {% data variables.copilot.copilot_autofix_short %} suggestions where possible to help developers remediate alerts faster and more effectively.{% endif %} -* Making sure that the campaign managers are available for collaboration, reviews, and questions about fixes. -* Providing access to educational information about the type of alerts included in the campaign. -* Making {% data variables.copilot.copilot_chat %} available for developers to use to learn about the vulnerabilities highlighted by the security alerts in the campaign. -* Defining a realistic deadline for campaign, bearing in mind the number of alerts you aim to fix. -* Publicizing the collaboration to developer teams and identifying the best way to engage them for your organization. +Imagine you’ve identified a recurring pattern of XSS vulnerabilities in several repositories. Rather than addressing alerts one by one, you decide to run a coordinated campaign that reduces risk while helping developers build confidence in secure coding. -For information about the developer experience, see [AUTOTITLE](/code-security/code-scanning/managing-code-scanning-alerts/fixing-alerts-in-security-campaign). +## 1. Define a focused goal -## Selecting security alerts for remediation +When running a campaign at scale, it’s tempting to target all urgent alerts at once. If your developers already have a strong foundation in secure coding and available capacity, that may work. -Your first thought may be to identify all the most urgent alerts and create a security campaign to fix them. If your developers already have a good understanding of secure coding and are keen to remediate potential vulnerabilities, this could be a successful approach for your company. However, if you need to build up knowledge of secure coding{% ifversion security-campaigns-secrets %}, exposed secrets,{% endif %} and common vulnerabilities, you will benefit from a more strategic approach. +However, if your goal is to both reduce risk and improve secure coding practices, a focused campaign is often more effective. Choosing a single vulnerability type, such as cross-site scripting, allows developers to recognize patterns, apply learning across multiple fixes, and build momentum. -{% ifversion security-campaigns-secrets %} +For this campaign, you decide to focus on XSS alerts across your organization, within the limits of how many alerts a single campaign can include. -### Example approach for a code campaign +## 2. Select alerts for your campaign -{% endif %} +On the security alerts page, start by filtering for cross-site scripting alerts. You can also use a predefined campaign template, such as **Cross-site scripting (CWE-79)**, to quickly define the scope. For information on filtering alerts, see [AUTOTITLE](/code-security/how-tos/manage-security-alerts/remediate-alerts-at-scale/filtering-alerts-in-security-overview). -For a campaign to raise awareness and fix cross-site scripting vulnerabilities, you could: +> [!NOTE] +> Security campaigns can include up to 1000 alerts. If your organization has more than 1000 XSS alerts, narrow your filters (for example, by repository, severity, or language) until the number of matching alerts is within this limit, or plan multiple campaigns to cover the remaining alerts. -* Create educational content for developers in a repository using resources from the OWASP Foundation, see [Cross Site Scripting (XSS)](https://owasp.org/www-community/attacks/xss/).{% ifversion security-campaigns-autofix %} -* Create a campaign to remediate all alerts for this vulnerability where {% data variables.copilot.copilot_autofix_short %} is supported, using the `autofix:supported` filter.{% endif %} -* Include a link to the educational content in the campaign description. -* Hold a training session or other event to highlight this opportunity to gain confidence in secure coding while fixing real bugs. -* Make sure that the security team members assigned to manage the campaign are available to review the pull requests created to fix the campaign alerts, collaborating as needed. +{% ifversion security-campaigns-autofix %}If {% data variables.copilot.copilot_autofix_short %} is available for your campaign, you can further refine the scope by using the `autofix:supported` filter. This allows developers to take advantage of AI-generated fix suggestions to remediate alerts more efficiently.{% endif %} -{% ifversion security-campaigns-secrets %} +Before launching the campaign, you also prepare supporting educational materials. For example: -### Example approach for a secrets campaign +* Create a repository with guidance on preventing XSS vulnerabilities. +* Link to resources from the OWASP Foundation, such as [Cross Site Scripting (XSS)](https://owasp.org/www-community/attacks/xss/). +* Provide examples of secure coding patterns and testing approaches. -{% data reusables.security.secrets-campaign-preview %} +You’ll include links to these resources in the campaign description so developers can reference them as they work through their assigned alerts. -For a campaign to raise awareness and fix exposed passwords, you could: +## 3. Assign campaign managers and define communication channels -* Create educational content for developers about storing passwords securely, for example, as {% data variables.product.github %} secrets, see [AUTOTITLE](/code-security/getting-started/understanding-github-secret-types). -* Create a campaign to remediate all alerts for exposed passwords, including a link to the educational content in the campaign description. -* Make sure that the security team members assigned to manage the campaign are available to ensure secrets are revoked and rotated acceptably, collaborating as needed. +Before launching the campaign, decide who will support developers throughout the remediation process. -{% endif %} +When you create a security campaign, you must assign one or more **campaign managers**. Campaign managers must be: -### Campaign filter templates +* A user with the organization owner role or the security manager role, or +* A member of a team with one of those roles -When you select alerts to include in a security campaign, you can use any of the filters on the security alerts page to define a subset of alerts. Alternatively, you can choose a campaign template to use one of the pre-defined filters for common needs, for example: "Cross-site scripting (CWE-79)." +Choose managers who can: -### Draft campaigns +* Answer questions about XSS vulnerabilities +* Review pull requests for fixes +* Help resolve edge cases or complex remediation scenarios -It can be useful to create a draft campaign first, which lists the alerts that are set to be included in the campaign and the campaign details, so that you can collaborate on the scope of the campaign prior to publishing it. For guidance on creating a draft campaign, see [AUTOTITLE](/code-security/securing-your-organization/fixing-security-alerts-at-scale/creating-managing-security-campaigns#create-a-campaign). +Because campaign managers are visible to developers participating in the campaign, this is also an opportunity to establish clear communication. When creating the campaign, include a contact link, such as a link to a {% data variables.product.prodname_discussions %} thread or another communication channel, so developers know where to ask questions. -### Limitations on security campaigns +By setting expectations early and making support visible, you increase trust and improve remediation rates. -The following limitations are intended to encourage you to take a balanced and measured approach to remediating alerts in your code. An iterative approach, addressing a few targeted sets of alerts at a time, is likely to lead to a sustainable and long-term change in security posture. +## 4. Create and publish the campaign -* A maximum of 10 active security campaigns at a time (no limits on closed campaigns). -* Each campaign can contain up to 1000 alerts. +Now you’re ready to create the campaign. -If you choose to create a campaign that exceeds these limits, alerts will be omitted to bring the campaign into line with the limits. Alerts in repositories with recent pushes are prioritized for inclusion in the campaign. +When defining the campaign: -## Specifying campaign managers and contact links +* Use your XSS filter or template to select the alerts. +* Add a clear description explaining the goal of the campaign. +* Include links to the educational resources you prepared earlier. +* Set a realistic due date based on the number of alerts and expected remediation capacity. -When you create a security campaign, you must select one or more "Campaign managers." A campaign manager must be either: -* A user with the organization owner role, or the security manager role. -* A member of a team with either the organization owner role, or the security manager role. +If you’re unsure about the scope, create a **draft campaign** first. A draft allows you to review the alerts that will be included and collaborate internally before publishing. -The names of the campaign managers are visible to developers when they take part in the campaign. To support communication between developers and the campaigns managers, you can also provide a contact link, such as a link to a {% data variables.product.prodname_discussions %} or another communication channel, when you create a campaign. +## 5. Enable issue tracking to increase visibility -If you want to increase the remediation rate for alerts and scale the knowledge of the security team, this is a key opportunity to build collaborative relationships with developers. Ideally, the campaign managers are available to answer questions and collaborate on difficult fixes via the contact link. Campaign managers should also be available to review pull requests for fixes over the whole course of the campaign. +To help developers track their work and provide visibility to managers, you can choose to automatically create an issue in each repository included in the campaign. This allows developers to manage their remediation work within their existing workflows and project boards. -## Creating issues for a campaign +When you enable issue creation, the campaign’s "Short description", "Contact link", and due date are automatically included in the issue body. If you update the short description, contact link, or due date, those changes are reflected in the issues. Additionally, when the campaign reaches its due date or is closed, a comment is posted on each issue to notify developers. This integration helps maintain clear communication and keeps the campaign organized across multiple repositories. -When you create a campaign, you can choose to automatically open a {% data variables.product.github %} Issue in every repository involved in the campaign. This means that the work can be much more easily tracked, assigned, and managed on team project boards. What's more, when you update the details of the campaign, such as the contact link or due date, the issue body gets automatically updated with the latest information. When a campaign reaches its due date, or gets deleted or closed, a comment is automatically posted on the issue. +## 6. Support developers during remediation -This can aid developer engagement by providing clear, up-to-date context directly within developers' existing workflows. For information on how to automate issue creation for campaigns, see [AUTOTITLE](/code-security/securing-your-organization/fixing-security-alerts-at-scale/creating-managing-security-campaigns#create-a-campaign). +Once the campaign is live, your role shifts from organizer to enabler. Developers will begin reviewing and fixing XSS alerts in their repositories. To help them move efficiently and confidently: -## Combining security training with a security campaign +* Ensure campaign managers are available to review pull requests and answer questions. +* Encourage developers to use {% data variables.copilot.copilot_chat_short %} to better understand why code is vulnerable and how to validate their fixes. {% ifversion security-campaigns-autofix %} +* Where supported, encourage developers to review and test {% data variables.copilot.copilot_autofix_short %} suggestions before merging changes.{% endif %} -If your security team already provides training for developers on secure coding, creating a campaign with alerts chosen to allow developers to use the skills from the training session is a great way to reinforce their learning. Even if you don't have a formal training program, it makes sense to provide information on the types of security vulnerabilities included in the campaign, examples of how to fix them, and how to test the fixes. This will simplify the role of the campaign manager as they will be able to direct developers to these resources for answers to basic questions. +If you prepared educational resources earlier, reference them in discussions and pull request reviews. Reinforcing shared guidance reduces repeated questions and helps build long-term secure coding habits. -The OWASP Foundation provides many resources for learning about the most common vulnerabilities and MITRE Corporation maintain a detailed list of common weaknesses, see [About the OWASP Foundation](https://owasp.org/about/) and [About CWE](https://cwe.mitre.org/about/index.html). +By staying visible and responsive during the campaign, you reinforce that this is a collaborative effort, not just a compliance exercise. -{% ifversion security-campaigns-autofix %} +## 7. Set a realistic deadline -## Providing AI support for learning about code vulnerabilities +You set a due date when creating the campaign. As the campaign progresses, ensure that timeline remains achievable. -{% data variables.copilot.copilot_autofix %} is automatically triggered to suggest a resolution for each {% data variables.product.prodname_code_scanning %} alert. However, developers will often want more information about why the original code is insecure and how to test that the fix is correct and doesn't break other components. +When setting or adjusting the deadline, consider: -{% data variables.product.prodname_copilot %} chat is an important tool for developers who have questions about secure coding, how to fix security alerts, and test their fix. Check that all developers in your organization have access to {% data variables.product.prodname_copilot_short %} in both their IDE and {% data variables.product.github %}, see [AUTOTITLE](/copilot/how-tos/administer-copilot/manage-for-organization/manage-access/grant-access). +* The number of alerts included in the campaign +* The expected remediation capacity of developers (for example, how much time they can dedicate to fixing alerts alongside their regular work) +* Any upcoming company deadlines or holidays that may impact availability -{% endif %} +Unless alert remediation is a dedicated initiative, most developers will be balancing this work alongside feature development. Setting a realistic timeline increases participation and prevents discouragement. -## Considerations in starting a security campaign and defining a deadline +If needed, you can run multiple focused campaigns over time rather than attempting to address all alert types at once. -As with any other project, it's important to define realistic timescales to avoid discouraging developers from participating in the security campaign. Unless your company is fixing security alerts as part of a larger campaign to reduce technical debt, most developers will not have time allocated to fixing alerts. You need to estimate remediation rates based on the time developers can find between scheduled tasks. It's also always worth checking on key company deadlines that developers may be working towards and checking national holidays. +## 8. Close the campaign and iterate + +As the deadline approaches, monitor progress and collaborate on any remaining complex fixes. + +When the campaign is closed: + +* Repository issues are updated automatically. +* Developers have resolved a focused set of vulnerabilities. +* Your organization has reduced risk in a measurable way. + +Most importantly, developers have gained practical experience recognizing and fixing a specific class of vulnerability. + +From here, you can repeat the process with another targeted set of alerts, such as SQL injection, insecure deserialization, or exposed secrets, to steadily improve your organization’s security posture over time. ## Next steps -* [AUTOTITLE](/code-security/securing-your-organization/fixing-security-alerts-at-scale/creating-managing-security-campaigns) +Ready to launch your campaign? To create and manage your security campaign, see [AUTOTITLE](/code-security/securing-your-organization/fixing-security-alerts-at-scale/creating-managing-security-campaigns). diff --git a/content/copilot/how-tos/configure-custom-instructions/add-repository-instructions.md b/content/copilot/how-tos/configure-custom-instructions/add-repository-instructions.md index c1511dd3e72c..eda2fcb3501d 100644 --- a/content/copilot/how-tos/configure-custom-instructions/add-repository-instructions.md +++ b/content/copilot/how-tos/configure-custom-instructions/add-repository-instructions.md @@ -182,6 +182,9 @@ Custom instructions are enabled for {% data variables.copilot.copilot_code-revie 1. In the "Code & automation" section of the sidebar, click **{% octicon "copilot" aria-hidden="true" aria-label="copilot" %} {% data variables.product.prodname_copilot_short %}**, then **Code review**. 1. Toggle the “Use custom instructions when reviewing pull requests” option on or off. +> [!NOTE] +> {% data reusables.copilot.code-review.custom-instructions-branch %} + ## Further reading * [AUTOTITLE](/copilot/reference/custom-instructions-support) diff --git a/content/copilot/tutorials/use-custom-instructions.md b/content/copilot/tutorials/use-custom-instructions.md index 87732a3c2b27..5d73b3206a4c 100644 --- a/content/copilot/tutorials/use-custom-instructions.md +++ b/content/copilot/tutorials/use-custom-instructions.md @@ -43,10 +43,10 @@ Before writing custom instructions, it's helpful to understand how {% data varia * **Context limits**: Very long instruction files may result in some instructions being overlooked. * **Specificity matters**: Clear, specific instructions work better than vague directives. -{% data reusables.copilot.code-review.custom-instructions-limit %} - Keep these factors in mind as you write your instructions—they'll help you set realistic expectations and write more effective guidance. +{% data reusables.copilot.code-review.custom-instructions-limit %} + ## Writing effective custom instructions The key to successful custom instructions is to be clear, concise, and specific. Here are the core principles to follow: diff --git a/content/get-started/learning-about-github/githubs-plans.md b/content/get-started/learning-about-github/githubs-plans.md index d5d755e9958e..73124ffbd9b3 100644 --- a/content/get-started/learning-about-github/githubs-plans.md +++ b/content/get-started/learning-about-github/githubs-plans.md @@ -1,5 +1,5 @@ --- -title: GitHub’s plans +title: GitHub's plans intro: 'An overview of {% data variables.product.prodname_dotcom %}''s pricing plans.' redirect_from: - /articles/github-s-products 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 ec6f23b0abf8..41db3f5008a3 100644 --- a/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md +++ b/content/organizations/collaborating-with-groups-in-organizations/about-organizations.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams --- ## About organizations diff --git a/content/organizations/collaborating-with-groups-in-organizations/about-your-organization-dashboard.md b/content/organizations/collaborating-with-groups-in-organizations/about-your-organization-dashboard.md index b93ae3084011..ca44d827f1b6 100644 --- a/content/organizations/collaborating-with-groups-in-organizations/about-your-organization-dashboard.md +++ b/content/organizations/collaborating-with-groups-in-organizations/about-your-organization-dashboard.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Organization dashboard --- 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 038e8450e3f6..f1458bbd5852 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 @@ -10,9 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Organization 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 3dd2140c590e..4dbfbc73195d 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 @@ -14,9 +14,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Access organization settings --- {% ifversion fpt or ghec %} diff --git a/content/organizations/collaborating-with-groups-in-organizations/best-practices-for-organizations.md b/content/organizations/collaborating-with-groups-in-organizations/best-practices-for-organizations.md index cfae6b63cfd6..65142d65e718 100644 --- a/content/organizations/collaborating-with-groups-in-organizations/best-practices-for-organizations.md +++ b/content/organizations/collaborating-with-groups-in-organizations/best-practices-for-organizations.md @@ -6,9 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams --- ## Assign multiple owners diff --git a/content/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch.md b/content/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch.md index 7bf363403545..cd4ce4d3969d 100644 --- a/content/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch.md +++ b/content/organizations/collaborating-with-groups-in-organizations/creating-a-new-organization-from-scratch.md @@ -9,9 +9,6 @@ redirect_from: - /articles/creating-a-new-organization-from-scratch - /admin/user-management/creating-organizations - /github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch -topics: - - Organizations - - Teams shortTitle: Create new organization --- diff --git a/content/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile.md b/content/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile.md index 48331a3066d3..358ad261c884 100644 --- a/content/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile.md +++ b/content/organizations/collaborating-with-groups-in-organizations/customizing-your-organizations-profile.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Organizations shortTitle: Customize organization profile --- diff --git a/content/organizations/collaborating-with-groups-in-organizations/index.md b/content/organizations/collaborating-with-groups-in-organizations/index.md index 1d65afabe027..26a4422d9c50 100644 --- a/content/organizations/collaborating-with-groups-in-organizations/index.md +++ b/content/organizations/collaborating-with-groups-in-organizations/index.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /about-organizations - /about-your-organization-dashboard diff --git a/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-dependencies-in-your-organization.md b/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-dependencies-in-your-organization.md index 1f3f87f830e4..f7cee94c9348 100644 --- a/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-dependencies-in-your-organization.md +++ b/content/organizations/collaborating-with-groups-in-organizations/viewing-insights-for-dependencies-in-your-organization.md @@ -7,9 +7,6 @@ redirect_from: - /organizations/collaborating-with-groups-in-organizations/viewing-insights-for-your-organization versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Dependency insights permissions: '{% data reusables.permissions.dependency-graph-view-org-insights %}' --- diff --git a/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md b/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md index fb6e64c2430c..df273a59195e 100644 --- a/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md +++ b/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/about-two-factor-authentication-and-saml-single-sign-on.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/about-two-factor-authentication-and-saml-single-sign-on versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: 2FA & SAML single sign-on --- diff --git a/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md b/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md index c8f13a76d443..b4cd203903a7 100644 --- a/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md +++ b/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/index.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/granting-access-to-your-organization-with-saml-single-sign-on versions: ghec: '*' -topics: - - Organizations - - Teams children: - /managing-bots-and-service-accounts-with-saml-single-sign-on - /viewing-and-managing-a-members-saml-access-to-your-organization diff --git a/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md b/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md index 0319debfb470..754f5fac6753 100644 --- a/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md +++ b/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/managing-bots-and-service-accounts-with-saml-single-sign-on.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/managing-bots-and-service-accounts-with-saml-single-sign-on versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage bots & service accounts --- diff --git a/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md b/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md index a5c763cd4b74..1b7ce072f3e0 100644 --- a/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md +++ b/content/organizations/granting-access-to-your-organization-with-saml-single-sign-on/viewing-and-managing-a-members-saml-access-to-your-organization.md @@ -8,9 +8,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/viewing-and-managing-a-members-saml-access-to-your-organization versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage SAML access --- diff --git a/content/organizations/index.md b/content/organizations/index.md index a3eaa60262a7..5e6db16e0691 100644 --- a/content/organizations/index.md +++ b/content/organizations/index.md @@ -30,9 +30,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /collaborating-with-groups-in-organizations - /managing-membership-in-your-organization diff --git a/content/organizations/keeping-your-organization-secure/index.md b/content/organizations/keeping-your-organization-secure/index.md index 166ae1884d02..6df155e8537a 100644 --- a/content/organizations/keeping-your-organization-secure/index.md +++ b/content/organizations/keeping-your-organization-secure/index.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /managing-two-factor-authentication-for-your-organization - /managing-security-settings-for-your-organization diff --git a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/accessing-compliance-reports-for-your-organization.md b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/accessing-compliance-reports-for-your-organization.md index d53a8a69598e..d91a5898435a 100644 --- a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/accessing-compliance-reports-for-your-organization.md +++ b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/accessing-compliance-reports-for-your-organization.md @@ -5,9 +5,6 @@ versions: fpt: '*' ghec: '*' type: how_to -topics: - - Organizations - - Teams permissions: Organization owners can access compliance reports for the organization. shortTitle: Access compliance reports --- diff --git a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/audit-log-events-for-your-organization.md b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/audit-log-events-for-your-organization.md index 23010592ffb3..4919563662af 100644 --- a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/audit-log-events-for-your-organization.md +++ b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/audit-log-events-for-your-organization.md @@ -5,9 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Audit log events autogenerated: audit-logs --- diff --git a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/displaying-ip-addresses-in-the-audit-log-for-your-organization.md b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/displaying-ip-addresses-in-the-audit-log-for-your-organization.md index 0446379c1683..23c86629afb7 100644 --- a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/displaying-ip-addresses-in-the-audit-log-for-your-organization.md +++ b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/displaying-ip-addresses-in-the-audit-log-for-your-organization.md @@ -6,11 +6,6 @@ permissions: Organization owners can display IP addresses in the audit log for a versions: feature: display-ip-org-audit-log type: how_to -topics: - - Auditing - - Organizations - - Networking - - Security --- > [!NOTE] diff --git a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/identifying-audit-log-events-performed-by-an-access-token.md b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/identifying-audit-log-events-performed-by-an-access-token.md index b44bb3010ae6..6d560bd54409 100644 --- a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/identifying-audit-log-events-performed-by-an-access-token.md +++ b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/identifying-audit-log-events-performed-by-an-access-token.md @@ -4,11 +4,6 @@ shortTitle: Identify events by token intro: 'You can identify the actions performed by a specific token in your organization.' versions: ghec: '*' -topics: - - Organizations - - Authentication - - OAuth apps - - GitHub Apps --- ## About token data in the audit log for an organization diff --git a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/index.md b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/index.md index 0b8f87c08986..2dd80255cf9c 100644 --- a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/index.md +++ b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/index.md @@ -6,9 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /managing-security-and-analysis-settings-for-your-organization - /managing-allowed-ip-addresses-for-your-organization diff --git a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-allowed-ip-addresses-for-your-organization.md b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-allowed-ip-addresses-for-your-organization.md index 139d1589f6a5..9fa1cacc6c9e 100644 --- a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-allowed-ip-addresses-for-your-organization.md +++ b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-allowed-ip-addresses-for-your-organization.md @@ -6,9 +6,6 @@ redirect_from: - /organizations/keeping-your-organization-secure/managing-allowed-ip-addresses-for-your-organization versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage allowed IP addresses permissions: Organization owners can manage allowed IP addresses for an organization. --- diff --git a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization.md b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization.md index bc577f20c0ee..ea8ec814d80f 100644 --- a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization.md +++ b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/managing-security-and-analysis-settings-for-your-organization.md @@ -10,9 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage security & analysis --- diff --git a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization.md b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization.md index 4781afa4f91a..fda6a9a45cfb 100644 --- a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization.md +++ b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/restricting-email-notifications-for-your-organization.md @@ -12,11 +12,6 @@ versions: ghes: '*' ghec: '*' type: how_to -topics: - - Enterprise - - Notifications - - Organizations - - Policy shortTitle: Restrict email notifications --- diff --git a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization.md b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization.md index fb777b1e3ab6..887df095eeb2 100644 --- a/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization.md +++ b/content/organizations/keeping-your-organization-secure/managing-security-settings-for-your-organization/reviewing-the-audit-log-for-your-organization.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Review audit log --- diff --git a/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/index.md b/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/index.md index 8e7098321e1b..416901376446 100644 --- a/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/index.md +++ b/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/index.md @@ -6,9 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /viewing-whether-users-in-your-organization-have-2fa-enabled - /preparing-to-require-two-factor-authentication-in-your-organization diff --git a/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/managing-bots-and-service-accounts-with-two-factor-authentication.md b/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/managing-bots-and-service-accounts-with-two-factor-authentication.md index 7d134957b0a3..a1b85b08e080 100644 --- a/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/managing-bots-and-service-accounts-with-two-factor-authentication.md +++ b/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/managing-bots-and-service-accounts-with-two-factor-authentication.md @@ -5,9 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage bots & service accounts --- ## About managing bots or service accounts with two-factor authentication (2FA) diff --git a/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/preparing-to-require-two-factor-authentication-in-your-organization.md b/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/preparing-to-require-two-factor-authentication-in-your-organization.md index 0d85d1d2c441..24a0a231bc92 100644 --- a/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/preparing-to-require-two-factor-authentication-in-your-organization.md +++ b/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/preparing-to-require-two-factor-authentication-in-your-organization.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Prepare to require 2FA --- {% ifversion fpt or ghec %} diff --git a/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization.md b/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization.md index 6fe284f8140f..80ce53b7af2d 100644 --- a/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization.md +++ b/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/requiring-two-factor-authentication-in-your-organization.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Require 2FA product: 'Requiring two-factor authentication is available to organizations on a {% data variables.product.prodname_free_team %} or {% data variables.product.prodname_team %} plan, as well as organizations on {% data variables.product.prodname_ghe_cloud %} or {% data variables.product.prodname_ghe_server %}. With {% data variables.product.prodname_ghe_cloud %}, this feature is unavailable for organizations in an {% data variables.enterprise.prodname_emu_enterprise %}.' --- diff --git a/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/viewing-whether-users-in-your-organization-have-2fa-enabled.md b/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/viewing-whether-users-in-your-organization-have-2fa-enabled.md index 50c815e2ce16..c5864f676594 100644 --- a/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/viewing-whether-users-in-your-organization-have-2fa-enabled.md +++ b/content/organizations/keeping-your-organization-secure/managing-two-factor-authentication-for-your-organization/viewing-whether-users-in-your-organization-have-2fa-enabled.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: View 2FA usage --- diff --git a/content/organizations/managing-access-to-your-organizations-project-boards/adding-an-outside-collaborator-to-a-project-board-in-your-organization.md b/content/organizations/managing-access-to-your-organizations-project-boards/adding-an-outside-collaborator-to-a-project-board-in-your-organization.md index eebefb7b3614..840a07a76a5d 100644 --- a/content/organizations/managing-access-to-your-organizations-project-boards/adding-an-outside-collaborator-to-a-project-board-in-your-organization.md +++ b/content/organizations/managing-access-to-your-organizations-project-boards/adding-an-outside-collaborator-to-a-project-board-in-your-organization.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/adding-an-outside-collaborator-to-a-project-board-in-your-organization versions: feature: projects-v1 -topics: - - Organizations - - Teams shortTitle: Add a collaborator allowTitleToDifferFromFilename: true --- diff --git a/content/organizations/managing-access-to-your-organizations-project-boards/index.md b/content/organizations/managing-access-to-your-organizations-project-boards/index.md index 59b2613fea35..23acea35b5ab 100644 --- a/content/organizations/managing-access-to-your-organizations-project-boards/index.md +++ b/content/organizations/managing-access-to-your-organizations-project-boards/index.md @@ -7,9 +7,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/managing-access-to-your-organizations-project-boards versions: feature: projects-v1 -topics: - - Organizations - - Teams children: - /project-board-permissions-for-an-organization - /managing-access-to-a-project-board-for-organization-members diff --git a/content/organizations/managing-access-to-your-organizations-project-boards/managing-access-to-a-project-board-for-organization-members.md b/content/organizations/managing-access-to-your-organizations-project-boards/managing-access-to-a-project-board-for-organization-members.md index 620c3ab03538..1bd968b7897d 100644 --- a/content/organizations/managing-access-to-your-organizations-project-boards/managing-access-to-a-project-board-for-organization-members.md +++ b/content/organizations/managing-access-to-your-organizations-project-boards/managing-access-to-a-project-board-for-organization-members.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/managing-access-to-a-project-board-for-organization-members versions: feature: projects-v1 -topics: - - Organizations - - Teams shortTitle: Manage access for members allowTitleToDifferFromFilename: true --- diff --git a/content/organizations/managing-access-to-your-organizations-project-boards/managing-an-individuals-access-to-an-organization-project-board.md b/content/organizations/managing-access-to-your-organizations-project-boards/managing-an-individuals-access-to-an-organization-project-board.md index b5541c005f7b..95233d0f8158 100644 --- a/content/organizations/managing-access-to-your-organizations-project-boards/managing-an-individuals-access-to-an-organization-project-board.md +++ b/content/organizations/managing-access-to-your-organizations-project-boards/managing-an-individuals-access-to-an-organization-project-board.md @@ -7,9 +7,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/managing-an-individuals-access-to-an-organization-project-board versions: feature: projects-v1 -topics: - - Organizations - - Teams shortTitle: Manage individual access allowTitleToDifferFromFilename: true --- diff --git a/content/organizations/managing-access-to-your-organizations-project-boards/managing-team-access-to-an-organization-project-board.md b/content/organizations/managing-access-to-your-organizations-project-boards/managing-team-access-to-an-organization-project-board.md index cab81f20b1f1..e7ca06e14f22 100644 --- a/content/organizations/managing-access-to-your-organizations-project-boards/managing-team-access-to-an-organization-project-board.md +++ b/content/organizations/managing-access-to-your-organizations-project-boards/managing-team-access-to-an-organization-project-board.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/managing-team-access-to-an-organization-project-board versions: feature: projects-v1 -topics: - - Organizations - - Teams shortTitle: Manage team access allowTitleToDifferFromFilename: true --- diff --git a/content/organizations/managing-access-to-your-organizations-project-boards/project-board-permissions-for-an-organization.md b/content/organizations/managing-access-to-your-organizations-project-boards/project-board-permissions-for-an-organization.md index 66baaa209f71..5a318ca7e7d5 100644 --- a/content/organizations/managing-access-to-your-organizations-project-boards/project-board-permissions-for-an-organization.md +++ b/content/organizations/managing-access-to-your-organizations-project-boards/project-board-permissions-for-an-organization.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/project-board-permissions-for-an-organization versions: feature: projects-v1 -topics: - - Organizations - - Teams shortTitle: '{% data variables.product.prodname_project_v1_caps %} permissions' allowTitleToDifferFromFilename: true --- diff --git a/content/organizations/managing-access-to-your-organizations-project-boards/removing-an-outside-collaborator-from-an-organization-project-board.md b/content/organizations/managing-access-to-your-organizations-project-boards/removing-an-outside-collaborator-from-an-organization-project-board.md index b168bae8db55..9793021bc0a8 100644 --- a/content/organizations/managing-access-to-your-organizations-project-boards/removing-an-outside-collaborator-from-an-organization-project-board.md +++ b/content/organizations/managing-access-to-your-organizations-project-boards/removing-an-outside-collaborator-from-an-organization-project-board.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/removing-an-outside-collaborator-from-an-organization-project-board versions: feature: projects-v1 -topics: - - Organizations - - Teams shortTitle: Remove outside collaborator allowTitleToDifferFromFilename: true --- diff --git a/content/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities.md b/content/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities.md index f53190a50958..289bae768ab0 100644 --- a/content/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities.md +++ b/content/organizations/managing-git-access-to-your-organizations-repositories/about-ssh-certificate-authorities.md @@ -7,9 +7,6 @@ redirect_from: versions: ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: SSH certificate authorities --- 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 fb96043184cb..8921971a5d64 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 @@ -8,9 +8,6 @@ redirect_from: versions: ghes: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /about-ssh-certificate-authorities - /managing-your-organizations-ssh-certificate-authorities diff --git a/content/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities.md b/content/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities.md index c6dd6123b481..14d6e78f4992 100644 --- a/content/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities.md +++ b/content/organizations/managing-git-access-to-your-organizations-repositories/managing-your-organizations-ssh-certificate-authorities.md @@ -7,9 +7,6 @@ redirect_from: versions: ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage SSH authorities permissions: Organization owners can manage an organization's SSH certificate authorities (CA). --- 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 01603b31bcf1..334f9f4d14ef 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 @@ -8,9 +8,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Create accounts for people --- diff --git a/content/organizations/managing-membership-in-your-organization/canceling-or-editing-an-invitation-to-join-your-organization.md b/content/organizations/managing-membership-in-your-organization/canceling-or-editing-an-invitation-to-join-your-organization.md index bdddc058220d..1b7516c308b9 100644 --- a/content/organizations/managing-membership-in-your-organization/canceling-or-editing-an-invitation-to-join-your-organization.md +++ b/content/organizations/managing-membership-in-your-organization/canceling-or-editing-an-invitation-to-join-your-organization.md @@ -7,9 +7,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Cancel or edit invitation --- diff --git a/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md b/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md index 1252b69655cb..f203253fb90f 100644 --- a/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md +++ b/content/organizations/managing-membership-in-your-organization/exporting-member-information-for-your-organization.md @@ -5,9 +5,6 @@ permissions: Organization owners can export member information for an organizati versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Export member information --- diff --git a/content/organizations/managing-membership-in-your-organization/index.md b/content/organizations/managing-membership-in-your-organization/index.md index ed27dc7e38f9..097ce18c4f35 100644 --- a/content/organizations/managing-membership-in-your-organization/index.md +++ b/content/organizations/managing-membership-in-your-organization/index.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /inviting-users-to-join-your-organization - /canceling-or-editing-an-invitation-to-join-your-organization 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 7a2538f0903e..3518326f1117 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 @@ -9,9 +9,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Invite users to join --- diff --git a/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md b/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md index 9e885a1b843e..0eb9f5cb93e7 100644 --- a/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md +++ b/content/organizations/managing-membership-in-your-organization/reinstating-a-former-member-of-your-organization.md @@ -9,9 +9,6 @@ versions: ghes: '*' ghec: '*' permissions: Organization owners can reinstate a former member of an organization. -topics: - - Organizations - - Teams shortTitle: Reinstate a member --- diff --git a/content/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization.md b/content/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization.md index 245e23882f32..9f71b2c543d3 100644 --- a/content/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization.md +++ b/content/organizations/managing-membership-in-your-organization/removing-a-member-from-your-organization.md @@ -11,9 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Remove a member permissions: Organization owners can remove members from an organization. --- diff --git a/content/organizations/managing-oauth-access-to-your-organizations-data/about-oauth-app-access-restrictions.md b/content/organizations/managing-oauth-access-to-your-organizations-data/about-oauth-app-access-restrictions.md index fda3f7a363fd..fbffd4377a4c 100644 --- a/content/organizations/managing-oauth-access-to-your-organizations-data/about-oauth-app-access-restrictions.md +++ b/content/organizations/managing-oauth-access-to-your-organizations-data/about-oauth-app-access-restrictions.md @@ -9,9 +9,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: '{% data variables.product.prodname_oauth_app %} restrictions' --- diff --git a/content/organizations/managing-oauth-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md b/content/organizations/managing-oauth-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md index 16f77317046b..f1e1d4938369 100644 --- a/content/organizations/managing-oauth-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md +++ b/content/organizations/managing-oauth-access-to-your-organizations-data/approving-oauth-apps-for-your-organization.md @@ -9,9 +9,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Approve {% data variables.product.prodname_oauth_app %} access --- When {% data variables.product.prodname_oauth_app %} access restrictions are enabled, organization members and outside collaborators must [request approval](/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-your-membership-in-organizations/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. diff --git a/content/organizations/managing-oauth-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md b/content/organizations/managing-oauth-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md index 3926e40b639b..fb185cca3655 100644 --- a/content/organizations/managing-oauth-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md +++ b/content/organizations/managing-oauth-access-to-your-organizations-data/denying-access-to-a-previously-approved-oauth-app-for-your-organization.md @@ -9,9 +9,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Deny {% data variables.product.prodname_oauth_app %} access --- diff --git a/content/organizations/managing-oauth-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md b/content/organizations/managing-oauth-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md index 4dc6287277d8..45280dca3402 100644 --- a/content/organizations/managing-oauth-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md +++ b/content/organizations/managing-oauth-access-to-your-organizations-data/disabling-oauth-app-access-restrictions-for-your-organization.md @@ -9,9 +9,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Unrestrict {% data variables.product.prodname_oauth_apps %} --- diff --git a/content/organizations/managing-oauth-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md b/content/organizations/managing-oauth-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md index d078f28dc47b..b1c241118216 100644 --- a/content/organizations/managing-oauth-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md +++ b/content/organizations/managing-oauth-access-to-your-organizations-data/enabling-oauth-app-access-restrictions-for-your-organization.md @@ -9,9 +9,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Restrict {% data variables.product.prodname_oauth_apps %} --- diff --git a/content/organizations/managing-oauth-access-to-your-organizations-data/index.md b/content/organizations/managing-oauth-access-to-your-organizations-data/index.md index a6eaaaca6641..30f4f0b19d4f 100644 --- a/content/organizations/managing-oauth-access-to-your-organizations-data/index.md +++ b/content/organizations/managing-oauth-access-to-your-organizations-data/index.md @@ -9,9 +9,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /about-oauth-app-access-restrictions - /enabling-oauth-app-access-restrictions-for-your-organization diff --git a/content/organizations/managing-organization-settings/about-azure-private-networking-for-github-hosted-runners-in-your-organization.md b/content/organizations/managing-organization-settings/about-azure-private-networking-for-github-hosted-runners-in-your-organization.md index ecac385eda2e..0b8369beb0f2 100644 --- a/content/organizations/managing-organization-settings/about-azure-private-networking-for-github-hosted-runners-in-your-organization.md +++ b/content/organizations/managing-organization-settings/about-azure-private-networking-for-github-hosted-runners-in-your-organization.md @@ -6,15 +6,6 @@ versions: feature: actions-private-networking-azure-vnet type: overview permissions: '{% data reusables.actions.azure-vnet-organization-permissions %}' -topics: - - Actions - - Action development - - Azure Virtual Network - - Administrator - - Developer - - CI - - CD - - Organizations redirect_from: - /organizations/managing-organization-settings/about-using-github-hosted-runners-in-your-azure-virtual-network --- diff --git a/content/organizations/managing-organization-settings/about-networking-for-hosted-compute-products-in-your-organization.md b/content/organizations/managing-organization-settings/about-networking-for-hosted-compute-products-in-your-organization.md index 8cf2a370bd6b..f61f8db4151c 100644 --- a/content/organizations/managing-organization-settings/about-networking-for-hosted-compute-products-in-your-organization.md +++ b/content/organizations/managing-organization-settings/about-networking-for-hosted-compute-products-in-your-organization.md @@ -6,15 +6,6 @@ permissions: '{% data reusables.actions.azure-vnet-organization-permissions %}' versions: feature: actions-private-networking-azure-vnet type: how_to -topics: - - Actions - - Action development - - Azure Virtual Network - - Administrator - - Developer - - CI - - CD - - Organizations --- ## About network configurations diff --git a/content/organizations/managing-organization-settings/allowing-people-to-delete-issues-in-your-organization.md b/content/organizations/managing-organization-settings/allowing-people-to-delete-issues-in-your-organization.md index bc9ba8af2ae9..406851a8644e 100644 --- a/content/organizations/managing-organization-settings/allowing-people-to-delete-issues-in-your-organization.md +++ b/content/organizations/managing-organization-settings/allowing-people-to-delete-issues-in-your-organization.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Allow issue deletion --- diff --git a/content/organizations/managing-organization-settings/allowing-project-visibility-changes-in-your-organization.md b/content/organizations/managing-organization-settings/allowing-project-visibility-changes-in-your-organization.md index 01f8c93e1190..dc7e9a058960 100644 --- a/content/organizations/managing-organization-settings/allowing-project-visibility-changes-in-your-organization.md +++ b/content/organizations/managing-organization-settings/allowing-project-visibility-changes-in-your-organization.md @@ -5,9 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Projects shortTitle: Project visibility permissions allowTitleToDifferFromFilename: true permissions: 'Organization owners can allow {% data variables.projects.project_v2_and_v1 %} visibility changes for an organization.' diff --git a/content/organizations/managing-organization-settings/archiving-an-organization.md b/content/organizations/managing-organization-settings/archiving-an-organization.md index 03697dfe7a7a..4c5c252b68d4 100644 --- a/content/organizations/managing-organization-settings/archiving-an-organization.md +++ b/content/organizations/managing-organization-settings/archiving-an-organization.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Organizations --- {% ifversion fpt or ghec %} diff --git a/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md b/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md index 44c59f61d7d3..35c94ad278c2 100644 --- a/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md +++ b/content/organizations/managing-organization-settings/changing-the-visibility-of-your-organizations-dependency-insights.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/changing-the-visibility-of-your-organizations-dependency-insights versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Change insight visibility --- diff --git a/content/organizations/managing-organization-settings/configuring-private-networking-for-github-hosted-runners-in-your-organization.md b/content/organizations/managing-organization-settings/configuring-private-networking-for-github-hosted-runners-in-your-organization.md index aa178a2a0f60..6286a8b2d595 100644 --- a/content/organizations/managing-organization-settings/configuring-private-networking-for-github-hosted-runners-in-your-organization.md +++ b/content/organizations/managing-organization-settings/configuring-private-networking-for-github-hosted-runners-in-your-organization.md @@ -6,15 +6,6 @@ versions: feature: actions-private-networking-azure-vnet type: how_to permissions: '{% data reusables.actions.azure-vnet-organization-permissions %}' -topics: - - Actions - - Action development - - Azure Virtual Network - - Administrator - - Developer - - CI - - CD - - Organizations --- ## About Azure private networking for {% data variables.product.company_short %}-hosted runners diff --git a/content/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization.md b/content/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization.md index a127f93d05b8..fc25f34b3e27 100644 --- a/content/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization.md +++ b/content/organizations/managing-organization-settings/configuring-the-retention-period-for-github-actions-artifacts-and-logs-in-your-organization.md @@ -7,9 +7,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Configure retention period --- diff --git a/content/organizations/managing-organization-settings/converting-an-organization-into-a-user.md b/content/organizations/managing-organization-settings/converting-an-organization-into-a-user.md index a12431bb411e..03f87eaf6b5c 100644 --- a/content/organizations/managing-organization-settings/converting-an-organization-into-a-user.md +++ b/content/organizations/managing-organization-settings/converting-an-organization-into-a-user.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Convert organization to user --- diff --git a/content/organizations/managing-organization-settings/creating-an-announcement-banner-for-your-organization.md b/content/organizations/managing-organization-settings/creating-an-announcement-banner-for-your-organization.md index 54778e55bda8..e1ffa2918d2f 100644 --- a/content/organizations/managing-organization-settings/creating-an-announcement-banner-for-your-organization.md +++ b/content/organizations/managing-organization-settings/creating-an-announcement-banner-for-your-organization.md @@ -6,8 +6,6 @@ versions: ghes: '*' ghec: '*' type: how_to -topics: - - Maintenance --- {% ifversion ghec %} diff --git a/content/organizations/managing-organization-settings/creating-rulesets-for-repositories-in-your-organization.md b/content/organizations/managing-organization-settings/creating-rulesets-for-repositories-in-your-organization.md index 7e602ba34432..99804cd7cad5 100644 --- a/content/organizations/managing-organization-settings/creating-rulesets-for-repositories-in-your-organization.md +++ b/content/organizations/managing-organization-settings/creating-rulesets-for-repositories-in-your-organization.md @@ -6,8 +6,6 @@ versions: ghec: '*' ghes: '*' permissions: Organization owners can create rulesets at the organization level. -topics: - - Organizations shortTitle: Create rulesets --- diff --git a/content/organizations/managing-organization-settings/deleting-an-organization-account.md b/content/organizations/managing-organization-settings/deleting-an-organization-account.md index c917e7732ee1..c36f32fe2a16 100644 --- a/content/organizations/managing-organization-settings/deleting-an-organization-account.md +++ b/content/organizations/managing-organization-settings/deleting-an-organization-account.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Delete organization --- diff --git a/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md b/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md index bcdc5a88f5df..99691f6c022c 100644 --- a/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md +++ b/content/organizations/managing-organization-settings/disabling-or-limiting-github-actions-for-your-organization.md @@ -8,9 +8,6 @@ versions: ghes: '*' ghec: '*' permissions: Organization owners{% ifversion custom-org-roles %} and users with the "Manage organization Actions policies" and "Manage runners and runner groups" fine-grained permissions{% endif %} can enable, disable, and limit {% data variables.product.prodname_actions %} for an organization. {% ifversion custom-org-roles %}

For more information, see [AUTOTITLE](/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles).{% endif %} -topics: - - Organizations - - Teams shortTitle: Disable or limit actions --- diff --git a/content/organizations/managing-organization-settings/disabling-project-boards-in-your-organization.md b/content/organizations/managing-organization-settings/disabling-project-boards-in-your-organization.md index b3e1aea5d479..a7d91f901a00 100644 --- a/content/organizations/managing-organization-settings/disabling-project-boards-in-your-organization.md +++ b/content/organizations/managing-organization-settings/disabling-project-boards-in-your-organization.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Disable projects allowTitleToDifferFromFilename: true --- diff --git a/content/organizations/managing-organization-settings/enabling-or-disabling-github-discussions-for-an-organization.md b/content/organizations/managing-organization-settings/enabling-or-disabling-github-discussions-for-an-organization.md index 28bb9498c7b7..67766b366f47 100644 --- a/content/organizations/managing-organization-settings/enabling-or-disabling-github-discussions-for-an-organization.md +++ b/content/organizations/managing-organization-settings/enabling-or-disabling-github-discussions-for-an-organization.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations shortTitle: Organization discussions --- diff --git a/content/organizations/managing-organization-settings/governing-how-people-use-repositories-in-your-organization.md b/content/organizations/managing-organization-settings/governing-how-people-use-repositories-in-your-organization.md index aa9e515070a9..d6f4d2f721dc 100644 --- a/content/organizations/managing-organization-settings/governing-how-people-use-repositories-in-your-organization.md +++ b/content/organizations/managing-organization-settings/governing-how-people-use-repositories-in-your-organization.md @@ -5,8 +5,6 @@ permissions: Organization owners versions: feature: repo-policy-rules type: how_to -topics: - - Repositories shortTitle: Govern repository usage --- diff --git a/content/organizations/managing-organization-settings/index.md b/content/organizations/managing-organization-settings/index.md index fd0121a0988d..66882f9caf15 100644 --- a/content/organizations/managing-organization-settings/index.md +++ b/content/organizations/managing-organization-settings/index.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /verifying-or-approving-a-domain-for-your-organization - /renaming-an-organization diff --git a/content/organizations/managing-organization-settings/managing-base-permissions-for-projects.md b/content/organizations/managing-organization-settings/managing-base-permissions-for-projects.md index 10549208396b..1cb7f7f8378a 100644 --- a/content/organizations/managing-organization-settings/managing-base-permissions-for-projects.md +++ b/content/organizations/managing-organization-settings/managing-base-permissions-for-projects.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Projects shortTitle: 'Manage {% data variables.projects.projects_v2 %} base permissions' allowTitleToDifferFromFilename: true --- diff --git a/content/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization.md b/content/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization.md index e80852b10540..c99ae41ba11b 100644 --- a/content/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization.md +++ b/content/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Repositories shortTitle: Repository custom properties --- diff --git a/content/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization.md b/content/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization.md index 33a8afab447a..24db8e6f1386 100644 --- a/content/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization.md +++ b/content/organizations/managing-organization-settings/managing-default-labels-for-repositories-in-your-organization.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage default labels --- diff --git a/content/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization.md b/content/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization.md index a47424e41dd7..c184be3c4eb2 100644 --- a/content/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization.md +++ b/content/organizations/managing-organization-settings/managing-discussion-creation-for-repositories-in-your-organization.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage repository discussions --- diff --git a/content/organizations/managing-organization-settings/managing-or-restricting-github-models-for-your-organization.md b/content/organizations/managing-organization-settings/managing-or-restricting-github-models-for-your-organization.md index 60364c9abe39..74005a1d2803 100644 --- a/content/organizations/managing-organization-settings/managing-or-restricting-github-models-for-your-organization.md +++ b/content/organizations/managing-organization-settings/managing-or-restricting-github-models-for-your-organization.md @@ -5,10 +5,6 @@ intro: You can enable, disable, and restrict the use of {% data variables.produc versions: feature: github-models permissions: 'Organization owners' -topics: - - Organizations - - AI - - GitHub Models allowTitleToDifferFromFilename: true --- diff --git a/content/organizations/managing-organization-settings/managing-pull-request-reviews-in-your-organization.md b/content/organizations/managing-organization-settings/managing-pull-request-reviews-in-your-organization.md index 45601443ecaf..e5d738f1ef39 100644 --- a/content/organizations/managing-organization-settings/managing-pull-request-reviews-in-your-organization.md +++ b/content/organizations/managing-organization-settings/managing-pull-request-reviews-in-your-organization.md @@ -4,9 +4,6 @@ intro: You can limit which users can approve or request changes to a pull reques versions: feature: pull-request-approval-limit permissions: Organization owners can limit which users can submit reviews that approve or request changes to a pull request. -topics: - - Organizations - - Pull requests shortTitle: Manage pull request reviews --- diff --git a/content/organizations/managing-organization-settings/managing-rulesets-for-repositories-in-your-organization.md b/content/organizations/managing-organization-settings/managing-rulesets-for-repositories-in-your-organization.md index a8557de14ae0..fd718596172a 100644 --- a/content/organizations/managing-organization-settings/managing-rulesets-for-repositories-in-your-organization.md +++ b/content/organizations/managing-organization-settings/managing-rulesets-for-repositories-in-your-organization.md @@ -6,8 +6,6 @@ versions: ghec: '*' ghes: '*' permissions: Organization owners and users with the "Manage organization ref update rules and rulesets" permission can manage rulesets at the organization level. -topics: - - Organizations shortTitle: Manage rulesets --- diff --git a/content/organizations/managing-organization-settings/managing-scheduled-reminders-for-your-organization.md b/content/organizations/managing-organization-settings/managing-scheduled-reminders-for-your-organization.md index ec8a15e42a9e..362bb76d3fe1 100644 --- a/content/organizations/managing-organization-settings/managing-scheduled-reminders-for-your-organization.md +++ b/content/organizations/managing-organization-settings/managing-scheduled-reminders-for-your-organization.md @@ -6,9 +6,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage scheduled reminders --- diff --git a/content/organizations/managing-organization-settings/managing-the-commit-signoff-policy-for-your-organization.md b/content/organizations/managing-organization-settings/managing-the-commit-signoff-policy-for-your-organization.md index 3106e72732dd..61737e8c76aa 100644 --- a/content/organizations/managing-organization-settings/managing-the-commit-signoff-policy-for-your-organization.md +++ b/content/organizations/managing-organization-settings/managing-the-commit-signoff-policy-for-your-organization.md @@ -6,8 +6,6 @@ versions: ghec: '*' ghes: '*' permissions: Organization owners can require all commits to repositories owned by the organization be signed off by the commit author. -topics: - - Organizations shortTitle: Manage the commit signoff policy --- diff --git a/content/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization.md b/content/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization.md index f92c456a907c..13b82fa81a86 100644 --- a/content/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization.md +++ b/content/organizations/managing-organization-settings/managing-the-default-branch-name-for-repositories-in-your-organization.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage default branch name --- diff --git a/content/organizations/managing-organization-settings/managing-the-display-of-member-names-in-your-organization.md b/content/organizations/managing-organization-settings/managing-the-display-of-member-names-in-your-organization.md index d8e33f20558f..431509c5fdd6 100644 --- a/content/organizations/managing-organization-settings/managing-the-display-of-member-names-in-your-organization.md +++ b/content/organizations/managing-organization-settings/managing-the-display-of-member-names-in-your-organization.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage display of member names --- diff --git a/content/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization.md b/content/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization.md index b8bbc51b1b81..3fc54eb511fb 100644 --- a/content/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization.md +++ b/content/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization.md @@ -10,9 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage forking policy --- diff --git a/content/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization.md b/content/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization.md index a29111108c40..2fe400ecc5bf 100644 --- a/content/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization.md +++ b/content/organizations/managing-organization-settings/managing-the-publication-of-github-pages-sites-for-your-organization.md @@ -10,9 +10,6 @@ versions: redirect_from: - /github/setting-up-and-managing-organizations-and-teams/disabling-publication-of-github-pages-sites-for-your-organization - /github/setting-up-and-managing-organizations-and-teams/managing-the-publication-of-github-pages-sites-for-your-organization -topics: - - Organizations - - Teams shortTitle: Manage Pages site publication --- diff --git a/content/organizations/managing-organization-settings/managing-updates-from-accounts-your-organization-sponsors.md b/content/organizations/managing-organization-settings/managing-updates-from-accounts-your-organization-sponsors.md index ecebf4cd4955..744325d7bd0a 100644 --- a/content/organizations/managing-organization-settings/managing-updates-from-accounts-your-organization-sponsors.md +++ b/content/organizations/managing-organization-settings/managing-updates-from-accounts-your-organization-sponsors.md @@ -7,9 +7,6 @@ versions: fpt: '*' ghec: '*' permissions: Organization owners can manage updates from accounts the organization sponsors. -topics: - - Organizations - - Teams shortTitle: Manage sponsorship updates --- diff --git a/content/organizations/managing-organization-settings/renaming-an-organization.md b/content/organizations/managing-organization-settings/renaming-an-organization.md index c8fce33687bc..8f33bde5bb03 100644 --- a/content/organizations/managing-organization-settings/renaming-an-organization.md +++ b/content/organizations/managing-organization-settings/renaming-an-organization.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams --- > [!TIP] diff --git a/content/organizations/managing-organization-settings/restricting-deploy-keys-in-your-organization.md b/content/organizations/managing-organization-settings/restricting-deploy-keys-in-your-organization.md index 5044d97386e1..85cc84026eca 100644 --- a/content/organizations/managing-organization-settings/restricting-deploy-keys-in-your-organization.md +++ b/content/organizations/managing-organization-settings/restricting-deploy-keys-in-your-organization.md @@ -4,9 +4,6 @@ intro: To protect your organization's data, you can configure permissions for cr permissions: Organization owners. versions: feature: deploy-keys-enterprise-org-policy -topics: - - Organizations - - Policies shortTitle: Restrict deploy keys --- diff --git a/content/organizations/managing-organization-settings/restricting-repository-creation-in-your-organization.md b/content/organizations/managing-organization-settings/restricting-repository-creation-in-your-organization.md index 88dfbc148e48..e1cfd73a1103 100644 --- a/content/organizations/managing-organization-settings/restricting-repository-creation-in-your-organization.md +++ b/content/organizations/managing-organization-settings/restricting-repository-creation-in-your-organization.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Restrict repository creation --- diff --git a/content/organizations/managing-organization-settings/restricting-repository-visibility-changes-in-your-organization.md b/content/organizations/managing-organization-settings/restricting-repository-visibility-changes-in-your-organization.md index f9119ae7c169..6cc5fe424a69 100644 --- a/content/organizations/managing-organization-settings/restricting-repository-visibility-changes-in-your-organization.md +++ b/content/organizations/managing-organization-settings/restricting-repository-visibility-changes-in-your-organization.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Set visibility changes policy permissions: Organization owners can restrict repository visibility changes for an organization. --- 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 0e6de09c0aa2..cb7080122723 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 @@ -8,9 +8,6 @@ redirect_from: versions: ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Set collaborator policy --- 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 d85f8aeac414..093cb258bfdc 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 @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Set repo management policy --- diff --git a/content/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization.md b/content/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization.md index cd89dab9d68b..0aa25a9e9ab7 100644 --- a/content/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization.md +++ b/content/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Restrict team creation --- diff --git a/content/organizations/managing-organization-settings/transferring-organization-ownership.md b/content/organizations/managing-organization-settings/transferring-organization-ownership.md index 6e30204ae89e..ddcb46a26d00 100644 --- a/content/organizations/managing-organization-settings/transferring-organization-ownership.md +++ b/content/organizations/managing-organization-settings/transferring-organization-ownership.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Transfer ownership --- {% ifversion ghec %} diff --git a/content/organizations/managing-organization-settings/troubleshooting-azure-private-network-configurations-for-github-hosted-runners-in-your-organization.md b/content/organizations/managing-organization-settings/troubleshooting-azure-private-network-configurations-for-github-hosted-runners-in-your-organization.md index 5c4833b5c8d3..c4835d841b2d 100644 --- a/content/organizations/managing-organization-settings/troubleshooting-azure-private-network-configurations-for-github-hosted-runners-in-your-organization.md +++ b/content/organizations/managing-organization-settings/troubleshooting-azure-private-network-configurations-for-github-hosted-runners-in-your-organization.md @@ -6,16 +6,6 @@ versions: feature: actions-private-networking-azure-vnet type: how_to permissions: '{% data reusables.actions.azure-vnet-organization-permissions %}' -topics: - - Actions - - Action development - - Azure Virtual Network - - Administrator - - Developer - - CI - - CD - - Organizations - - Troubleshooting --- ## Troubleshooting configuring private networking for {% data variables.product.company_short %}-hosted runners in your organization diff --git a/content/organizations/managing-organization-settings/upgrading-to-the-github-customer-agreement.md b/content/organizations/managing-organization-settings/upgrading-to-the-github-customer-agreement.md index 76de8bef9817..6bc7ef356f72 100644 --- a/content/organizations/managing-organization-settings/upgrading-to-the-github-customer-agreement.md +++ b/content/organizations/managing-organization-settings/upgrading-to-the-github-customer-agreement.md @@ -8,9 +8,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Upgrade to Corporate ToS --- diff --git a/content/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization.md b/content/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization.md index 2ec6592d852b..43643ea49cf9 100644 --- a/content/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization.md +++ b/content/organizations/managing-organization-settings/verifying-or-approving-a-domain-for-your-organization.md @@ -12,11 +12,6 @@ versions: ghes: '*' ghec: '*' type: how_to -topics: - - Enterprise - - Notifications - - Organizations - - Policy shortTitle: Verify or approve a domain --- diff --git a/content/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles.md b/content/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles.md index c100d45d8435..0c11f9752e3b 100644 --- a/content/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles.md +++ b/content/organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-organization-roles.md @@ -3,8 +3,6 @@ title: About custom organization roles intro: "You can control access to your {% ifversion org-custom-role-with-repo-permissions %}organization's settings and repositories{% else %}organization's settings{% endif %} with custom organization roles." versions: feature: 'custom-org-roles' -topics: - - Organizations shortTitle: Custom organization roles product: 'Organizations on {% data variables.product.prodname_ghe_cloud %}{% ifversion ghes %} and {% data variables.product.prodname_ghe_server %}{% endif %}' --- diff --git a/content/organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization.md b/content/organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization.md index 201ea9abeef3..ba4c3c7c5ae5 100644 --- a/content/organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization.md +++ b/content/organizations/managing-peoples-access-to-your-organization-with-roles/adding-a-billing-manager-to-your-organization.md @@ -7,10 +7,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams - - Billing shortTitle: Add a billing manager --- diff --git a/content/organizations/managing-peoples-access-to-your-organization-with-roles/index.md b/content/organizations/managing-peoples-access-to-your-organization-with-roles/index.md index 9d0f2b99f548..18394ce7c7e7 100644 --- a/content/organizations/managing-peoples-access-to-your-organization-with-roles/index.md +++ b/content/organizations/managing-peoples-access-to-your-organization-with-roles/index.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /roles-in-an-organization - /using-organization-roles diff --git a/content/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization.md b/content/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization.md index 4761eee7cc46..d2f0eeb5415a 100644 --- a/content/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization.md +++ b/content/organizations/managing-peoples-access-to-your-organization-with-roles/maintaining-ownership-continuity-for-your-organization.md @@ -12,9 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Maintain ownership continuity --- diff --git a/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-organization-roles.md b/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-organization-roles.md index b45ffd9b7914..73289f8acd29 100644 --- a/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-organization-roles.md +++ b/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-organization-roles.md @@ -3,8 +3,6 @@ title: Managing custom organization roles intro: "You can create, edit, and assign custom organization roles in an organization's settings." versions: feature: 'custom-org-roles' -topics: - - Organizations shortTitle: Manage custom roles permissions: 'Organization owners and users with the "Manage custom organization roles" permission' product: 'Organizations on {% data variables.product.prodname_ghe_cloud %}{% ifversion ghes %} and {% data variables.product.prodname_ghe_server %}{% endif %}' diff --git a/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-moderators-in-your-organization.md b/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-moderators-in-your-organization.md index efb1d43c9075..83ddcb9bc530 100644 --- a/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-moderators-in-your-organization.md +++ b/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-moderators-in-your-organization.md @@ -5,10 +5,6 @@ permissions: Organization owners can assign the moderator role. versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams - - Community shortTitle: Managing moderators --- diff --git a/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization.md b/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization.md index ded39a3a237c..20cd38af28fa 100644 --- a/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization.md +++ b/content/organizations/managing-peoples-access-to-your-organization-with-roles/managing-security-managers-in-your-organization.md @@ -5,9 +5,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Organizations - - Teams shortTitle: Security manager role permissions: Organization owners can assign the security manager role. --- diff --git a/content/organizations/managing-peoples-access-to-your-organization-with-roles/removing-a-billing-manager-from-your-organization.md b/content/organizations/managing-peoples-access-to-your-organization-with-roles/removing-a-billing-manager-from-your-organization.md index 8f673ef520d9..73fc6d4a40b4 100644 --- a/content/organizations/managing-peoples-access-to-your-organization-with-roles/removing-a-billing-manager-from-your-organization.md +++ b/content/organizations/managing-peoples-access-to-your-organization-with-roles/removing-a-billing-manager-from-your-organization.md @@ -7,10 +7,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams - - Billing shortTitle: Remove billing manager --- 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 433ebe1a5f73..568f98bc352d 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 @@ -10,9 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Roles in an organization --- diff --git a/content/organizations/managing-peoples-access-to-your-organization-with-roles/using-organization-roles.md b/content/organizations/managing-peoples-access-to-your-organization-with-roles/using-organization-roles.md index 099d7202dbce..00de67fd896c 100644 --- a/content/organizations/managing-peoples-access-to-your-organization-with-roles/using-organization-roles.md +++ b/content/organizations/managing-peoples-access-to-your-organization-with-roles/using-organization-roles.md @@ -5,11 +5,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Organizations - - Access management - - Administrator - - Permissions permissions: 'Organization owners{% ifversion ghec %} and users with the "Manage custom organization roles" permission{% endif %}' product: 'Organizations on {% data variables.product.prodname_free_team %}, {% data variables.product.prodname_pro %}, {% data variables.product.prodname_team %}, {% data variables.product.prodname_ghe_cloud %}, and {% data variables.product.prodname_ghe_server %}' shortTitle: Use organization roles diff --git a/content/organizations/managing-programmatic-access-to-your-organization/about-programmatic-access-in-your-organization.md b/content/organizations/managing-programmatic-access-to-your-organization/about-programmatic-access-in-your-organization.md index 14fc272ad498..1e81dfbca118 100644 --- a/content/organizations/managing-programmatic-access-to-your-organization/about-programmatic-access-in-your-organization.md +++ b/content/organizations/managing-programmatic-access-to-your-organization/about-programmatic-access-in-your-organization.md @@ -2,11 +2,6 @@ title: About programmatic access in your organization intro: 'As an organization owner, you can control access to your organization by {% data variables.product.pat_generic %}s, {% data variables.product.prodname_github_apps %}, and {% data variables.product.prodname_oauth_apps %}.' permissions: Organization owners can control programmatic access in their organization. -topics: - - Organizations - - GitHub Apps - - OAuth apps - - API shortTitle: About programmatic access versions: fpt: '*' diff --git a/content/organizations/managing-programmatic-access-to-your-organization/adding-and-removing-github-app-managers-in-your-organization.md b/content/organizations/managing-programmatic-access-to-your-organization/adding-and-removing-github-app-managers-in-your-organization.md index cdb44a8b6ea6..92f6fe44b152 100644 --- a/content/organizations/managing-programmatic-access-to-your-organization/adding-and-removing-github-app-managers-in-your-organization.md +++ b/content/organizations/managing-programmatic-access-to-your-organization/adding-and-removing-github-app-managers-in-your-organization.md @@ -14,10 +14,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams - - GitHub Apps shortTitle: GitHub App managers --- diff --git a/content/organizations/managing-programmatic-access-to-your-organization/index.md b/content/organizations/managing-programmatic-access-to-your-organization/index.md index c807f0af1473..52c7aed1a31c 100644 --- a/content/organizations/managing-programmatic-access-to-your-organization/index.md +++ b/content/organizations/managing-programmatic-access-to-your-organization/index.md @@ -10,9 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /about-programmatic-access-in-your-organization - /adding-and-removing-github-app-managers-in-your-organization diff --git a/content/organizations/managing-programmatic-access-to-your-organization/limiting-oauth-app-and-github-app-access-requests-and-installations.md b/content/organizations/managing-programmatic-access-to-your-organization/limiting-oauth-app-and-github-app-access-requests-and-installations.md index add6ce259943..80a79eac472a 100644 --- a/content/organizations/managing-programmatic-access-to-your-organization/limiting-oauth-app-and-github-app-access-requests-and-installations.md +++ b/content/organizations/managing-programmatic-access-to-your-organization/limiting-oauth-app-and-github-app-access-requests-and-installations.md @@ -6,10 +6,6 @@ versions: ghes: '*' ghec: '*' permissions: Organization owners can limit who can make app access requests to the organization{% ifversion fpt or ghec or ghes > 3.19 %} and who can install apps{% endif %}. -topics: - - Organizations - - GitHub Apps - - OAuth apps shortTitle: Limit app requests and installations redirect_from: - /organizations/managing-organization-settings/limiting-oauth-app-and-github-app-access-requests diff --git a/content/organizations/managing-programmatic-access-to-your-organization/reviewing-github-apps-installed-in-your-organization.md b/content/organizations/managing-programmatic-access-to-your-organization/reviewing-github-apps-installed-in-your-organization.md index 3a86a6e58eae..4d07aa6f4e1f 100644 --- a/content/organizations/managing-programmatic-access-to-your-organization/reviewing-github-apps-installed-in-your-organization.md +++ b/content/organizations/managing-programmatic-access-to-your-organization/reviewing-github-apps-installed-in-your-organization.md @@ -12,9 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Review installed GitHub Apps --- diff --git a/content/organizations/managing-programmatic-access-to-your-organization/viewing-api-insights-in-your-organization.md b/content/organizations/managing-programmatic-access-to-your-organization/viewing-api-insights-in-your-organization.md index e69d4bd55091..7d0d707c5c91 100644 --- a/content/organizations/managing-programmatic-access-to-your-organization/viewing-api-insights-in-your-organization.md +++ b/content/organizations/managing-programmatic-access-to-your-organization/viewing-api-insights-in-your-organization.md @@ -6,10 +6,6 @@ permissions: 'Organization owners and users with the "View organization API insi product: 'Your organization must be on a {% data variables.product.prodname_ghe_cloud %} plan.' versions: feature: 'api-insights' -topics: - - API - - Organizations - - REST --- ## About API insights diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md index 455bae243296..2638fe0f01c1 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/about-identity-and-access-management-with-saml-single-sign-on.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/about-identity-and-access-management-with-saml-single-sign-on versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: IAM with SAML SSO --- diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations.md index c57da9ce24aa..64f18d467f53 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/about-scim-for-organizations.md @@ -7,9 +7,6 @@ redirect_from: - /organizations/managing-saml-single-sign-on-for-your-organization/about-scim versions: ghec: '*' -topics: - - Organizations - - Teams --- >[!IMPORTANT] This article describes the SCIM integration for managing membership of organizations, available to **enterprises that use personal accounts on {% data variables.product.prodname_dotcom_the_website %}**. If you're looking for the SCIM integration for provisioning user accounts for **{% data variables.product.prodname_emus %}** or **{% data variables.product.prodname_ghe_server %}**, see [AUTOTITLE](/enterprise-cloud@latest/admin/managing-iam/provisioning-user-accounts-with-scim/configuring-scim-provisioning-for-users) or [AUTOTITLE](/enterprise-server@latest/admin/managing-iam/provisioning-user-accounts-with-scim/user-provisioning-with-scim-on-ghes). diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md index d3bb2548da0f..0317f13cb527 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/accessing-your-organization-if-your-identity-provider-is-unavailable.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/accessing-your-organization-if-your-identity-provider-is-unavailable versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Unavailable identity provider permissions: Organization owners can use a recovery code to bypass SAML SSO. --- diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md index 4186df40f19f..403091356506 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/configuring-saml-single-sign-on-and-scim-using-okta.md @@ -6,9 +6,6 @@ redirect_from: permissions: Organization owners can configure SAML SSO and SCIM using Okta for an organization. versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Configure SAML & SCIM with Okta --- diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md index e8135a0c3288..6ba33b85a9a3 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/connecting-your-identity-provider-to-your-organization.md @@ -6,10 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/connecting-your-identity-provider-to-your-organization versions: ghec: '*' -topics: - - Authentication - - Organizations - - Teams shortTitle: Connect an IdP --- diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/disabling-saml-single-sign-on-for-your-organization.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/disabling-saml-single-sign-on-for-your-organization.md index a4785ca4fd18..d0fd08183302 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/disabling-saml-single-sign-on-for-your-organization.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/disabling-saml-single-sign-on-for-your-organization.md @@ -3,9 +3,6 @@ title: Disabling SAML single sign-on for your organization intro: 'You can disable SAML single sign-on (SSO) for your organization.' versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Disable SAML permissions: Organization owners can disable SAML SSO for an organization. --- diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md index 22aedfb2080f..96ebaf079851 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/downloading-your-organizations-saml-single-sign-on-recovery-codes.md @@ -7,9 +7,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/downloading-your-organizations-saml-single-sign-on-recovery-codes versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Download SAML recovery codes --- diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md index 461114ec1f4f..ab98b894b582 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/enabling-and-testing-saml-single-sign-on-for-your-organization.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/enabling-and-testing-saml-single-sign-on-for-your-organization versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Enable & test SAML SSO --- diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md index b4bd4c917b6b..c9394a4bd43e 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/enforcing-saml-single-sign-on-for-your-organization.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/enforcing-saml-single-sign-on-for-your-organization versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Enforce SAML single sign-on --- 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 bf3d366d51a1..2017c1831b9f 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 @@ -7,9 +7,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/managing-saml-single-sign-on-for-your-organization versions: ghec: '*' -topics: - - Organizations - - Teams children: - /about-identity-and-access-management-with-saml-single-sign-on - /about-scim-for-organizations diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md index f537b162eaa5..b8dc03ad5d8e 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/managing-team-synchronization-for-your-organization.md @@ -9,9 +9,6 @@ redirect_from: permissions: Organization owners can manage team synchronization for an organization. versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage team synchronization --- diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md index 2d660b0d2979..ae68ca9ed9fa 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/preparing-to-enforce-saml-single-sign-on-in-your-organization.md @@ -6,9 +6,6 @@ redirect_from: - /github/setting-up-and-managing-organizations-and-teams/preparing-to-enforce-saml-single-sign-on-in-your-organization versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Prepare to enforce SAML SSO --- diff --git a/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management-for-your-organization.md b/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management-for-your-organization.md index 6e7265565b28..c7c8d660efa5 100644 --- a/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management-for-your-organization.md +++ b/content/organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management-for-your-organization.md @@ -3,9 +3,6 @@ title: Troubleshooting identity and access management for your organization intro: 'Review and resolve common troubleshooting errors for managing your organization''s SAML SSO, team synchronization, or identity provider (IdP) connection.' versions: ghec: '*' -topics: - - Organizations - - Teams shortTitle: Troubleshooting access redirect_from: - /organizations/managing-saml-single-sign-on-for-your-organization/troubleshooting-identity-and-access-management diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/index.md b/content/organizations/managing-user-access-to-your-organizations-repositories/index.md index 4263f170e802..a642bb2e33d3 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/index.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/index.md @@ -11,9 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /managing-repository-roles - /managing-outside-collaborators diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/adding-outside-collaborators-to-repositories-in-your-organization.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/adding-outside-collaborators-to-repositories-in-your-organization.md index a63c6642b4c2..412039475a80 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/adding-outside-collaborators-to-repositories-in-your-organization.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/adding-outside-collaborators-to-repositories-in-your-organization.md @@ -10,9 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Add outside collaborator permissions: People with admin access to a repository can add an outside collaborator to the repository. --- diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/canceling-an-invitation-to-become-an-outside-collaborator-in-your-organization.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/canceling-an-invitation-to-become-an-outside-collaborator-in-your-organization.md index 72db186010fa..52d518c0d5fb 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/canceling-an-invitation-to-become-an-outside-collaborator-in-your-organization.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/canceling-an-invitation-to-become-an-outside-collaborator-in-your-organization.md @@ -9,9 +9,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Cancel collaborator invitation --- diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/converting-an-organization-member-to-an-outside-collaborator.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/converting-an-organization-member-to-an-outside-collaborator.md index 6cb9a7dc36a8..c4902efe6f96 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/converting-an-organization-member-to-an-outside-collaborator.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/converting-an-organization-member-to-an-outside-collaborator.md @@ -11,9 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Convert member to collaborator --- diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/converting-an-outside-collaborator-to-an-organization-member.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/converting-an-outside-collaborator-to-an-organization-member.md index c1c534465a97..ac5ff815abca 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/converting-an-outside-collaborator-to-an-organization-member.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/converting-an-outside-collaborator-to-an-organization-member.md @@ -11,9 +11,6 @@ versions: ghes: '*' ghec: '*' permissions: 'Organization owners can {% ifversion fpt or ghec %}invite users to join{% else %}add users to{% endif %} an organization.' -topics: - - Organizations - - Teams shortTitle: Convert collaborator to member --- diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/index.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/index.md index 0189ca1adeb9..de6c92afaa1f 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/index.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/index.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations children: - /adding-outside-collaborators-to-repositories-in-your-organization - /canceling-an-invitation-to-become-an-outside-collaborator-in-your-organization diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/reinstating-a-former-outside-collaborators-access-to-your-organization.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/reinstating-a-former-outside-collaborators-access-to-your-organization.md index fd4e14132b43..c67c9a9c13f6 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/reinstating-a-former-outside-collaborators-access-to-your-organization.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/reinstating-a-former-outside-collaborators-access-to-your-organization.md @@ -11,9 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Reinstate collaborator --- diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/removing-an-outside-collaborator-from-an-organization-repository.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/removing-an-outside-collaborator-from-an-organization-repository.md index dd4af86ece29..c8d39f03e81c 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/removing-an-outside-collaborator-from-an-organization-repository.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-outside-collaborators/removing-an-outside-collaborator-from-an-organization-repository.md @@ -10,9 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Remove collaborator --- diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/about-custom-repository-roles.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/about-custom-repository-roles.md index b960eb1c04b6..196ecf01527c 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/about-custom-repository-roles.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/about-custom-repository-roles.md @@ -4,9 +4,6 @@ intro: You can more granularly control access to your organization's repositorie versions: ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: About custom roles redirect_from: - /organizations/managing-peoples-access-to-your-organization-with-roles/about-custom-repository-roles diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/index.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/index.md index 473ad882cb2f..0fb6f253ce15 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/index.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/index.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations children: - /repository-roles-for-an-organization - /about-custom-repository-roles diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-an-individuals-access-to-an-organization-repository.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-an-individuals-access-to-an-organization-repository.md index d730d7f50d00..5546b6e036bd 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-an-individuals-access-to-an-organization-repository.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-an-individuals-access-to-an-organization-repository.md @@ -12,9 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage individual access permissions: People with admin access to a repository can manage access to the repository. --- diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-custom-repository-roles-for-an-organization.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-custom-repository-roles-for-an-organization.md index 5f22c3161dc5..d7f98e12c801 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-custom-repository-roles-for-an-organization.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-custom-repository-roles-for-an-organization.md @@ -5,9 +5,6 @@ permissions: Organization owners. versions: ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage custom roles redirect_from: - /early-access/github/articles/managing-custom-repository-roles-for-an-organization diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-team-access-to-an-organization-repository.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-team-access-to-an-organization-repository.md index b532ed7365ea..f5462c9711d1 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-team-access-to-an-organization-repository.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/managing-team-access-to-an-organization-repository.md @@ -11,9 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Manage team access --- diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/repository-roles-for-an-organization.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/repository-roles-for-an-organization.md index 6ae2a323e7e6..541782a02f54 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/repository-roles-for-an-organization.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/repository-roles-for-an-organization.md @@ -12,9 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Repository roles --- diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/setting-base-permissions-for-an-organization.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/setting-base-permissions-for-an-organization.md index e3b0f9e5c269..12b0b38a3721 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/setting-base-permissions-for-an-organization.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/setting-base-permissions-for-an-organization.md @@ -10,9 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Set base permissions --- diff --git a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/viewing-people-with-access-to-your-repository.md b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/viewing-people-with-access-to-your-repository.md index 52d6bdf63579..150af594d280 100644 --- a/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/viewing-people-with-access-to-your-repository.md +++ b/content/organizations/managing-user-access-to-your-organizations-repositories/managing-repository-roles/viewing-people-with-access-to-your-repository.md @@ -10,9 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: View people with access permissions: Organization owners can view people with access to a repository. --- 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 d271cd593b16..b3b058604117 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 @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Convert admin team --- 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 449a83879ba4..3b89b345886f 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 @@ -10,9 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Convert Owners team --- diff --git a/content/organizations/migrating-to-improved-organization-permissions/index.md b/content/organizations/migrating-to-improved-organization-permissions/index.md index 510cc6c4d73e..690ac5d14c91 100644 --- a/content/organizations/migrating-to-improved-organization-permissions/index.md +++ b/content/organizations/migrating-to-improved-organization-permissions/index.md @@ -11,9 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /converting-an-owners-team-to-improved-organization-permissions - /converting-an-admin-team-to-improved-organization-permissions 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 d67f970d7068..eec15ef39f12 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 @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Migrate admin team --- diff --git a/content/organizations/organizing-members-into-teams/about-teams.md b/content/organizations/organizing-members-into-teams/about-teams.md index 29c27039578d..754726f7754b 100644 --- a/content/organizations/organizing-members-into-teams/about-teams.md +++ b/content/organizations/organizing-members-into-teams/about-teams.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams allowTitleToDifferFromFilename: true --- 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 19ab2716e781..7e5ce2d7662e 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 @@ -15,9 +15,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Add members to a team --- 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 1c5bd2aa8ce2..5a18c08807b6 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 @@ -10,9 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Team maintainers permissions: Organization owners can promote team members to team maintainers. --- diff --git a/content/organizations/organizing-members-into-teams/changing-team-visibility.md b/content/organizations/organizing-members-into-teams/changing-team-visibility.md index 28098193dcce..10713251b96c 100644 --- a/content/organizations/organizing-members-into-teams/changing-team-visibility.md +++ b/content/organizations/organizing-members-into-teams/changing-team-visibility.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams --- {% data reusables.organizations.types-of-team-visibility %} diff --git a/content/organizations/organizing-members-into-teams/configuring-team-notifications.md b/content/organizations/organizing-members-into-teams/configuring-team-notifications.md index 67fcdb27eecb..9804be13fdfd 100644 --- a/content/organizations/organizing-members-into-teams/configuring-team-notifications.md +++ b/content/organizations/organizing-members-into-teams/configuring-team-notifications.md @@ -5,9 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams --- Team maintainers and organization owners can enable or disable notifications for specific teams. When notifications are enabled, members of the team will receive notifications when the team is mentioned in an issue, pull request, or comment. 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 8859864b3ada..86f98b8b6301 100644 --- a/content/organizations/organizing-members-into-teams/creating-a-team.md +++ b/content/organizations/organizing-members-into-teams/creating-a-team.md @@ -13,9 +13,6 @@ versions: ghes: '*' ghec: '*' permissions: 'Organization owners can create teams and can control whether all organization members can also create teams. For more information, see [AUTOTITLE](/organizations/managing-organization-settings/setting-team-creation-permissions-in-your-organization).' -topics: - - Organizations - - Teams allowTitleToDifferFromFilename: true --- diff --git a/content/organizations/organizing-members-into-teams/deleting-a-team.md b/content/organizations/organizing-members-into-teams/deleting-a-team.md index b8664c6c8123..e46ca8d0faa0 100644 --- a/content/organizations/organizing-members-into-teams/deleting-a-team.md +++ b/content/organizations/organizing-members-into-teams/deleting-a-team.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams --- > [!TIP] diff --git a/content/organizations/organizing-members-into-teams/index.md b/content/organizations/organizing-members-into-teams/index.md index dcbc1282c998..e2d767a3ead3 100644 --- a/content/organizations/organizing-members-into-teams/index.md +++ b/content/organizations/organizing-members-into-teams/index.md @@ -16,9 +16,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams children: - /about-teams - /creating-a-team diff --git a/content/organizations/organizing-members-into-teams/managing-code-review-settings-for-your-team.md b/content/organizations/organizing-members-into-teams/managing-code-review-settings-for-your-team.md index 8acd3d031012..4ba18d39f87f 100644 --- a/content/organizations/organizing-members-into-teams/managing-code-review-settings-for-your-team.md +++ b/content/organizations/organizing-members-into-teams/managing-code-review-settings-for-your-team.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Code review settings permissions: Team maintainers and organization owners can configure code review settings. --- diff --git a/content/organizations/organizing-members-into-teams/managing-scheduled-reminders-for-your-team.md b/content/organizations/organizing-members-into-teams/managing-scheduled-reminders-for-your-team.md index 977d1b3cc9b3..960e3315f5f4 100644 --- a/content/organizations/organizing-members-into-teams/managing-scheduled-reminders-for-your-team.md +++ b/content/organizations/organizing-members-into-teams/managing-scheduled-reminders-for-your-team.md @@ -7,9 +7,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Scheduled reminders --- 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 0c93cc62954d..464369091d9c 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 @@ -10,9 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Move a team --- 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 521ec3d7494e..0a46e0f3ef40 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 @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Remove members --- diff --git a/content/organizations/organizing-members-into-teams/renaming-a-team.md b/content/organizations/organizing-members-into-teams/renaming-a-team.md index 040d57a8da5a..0f534cd9339a 100644 --- a/content/organizations/organizing-members-into-teams/renaming-a-team.md +++ b/content/organizations/organizing-members-into-teams/renaming-a-team.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams --- {% data reusables.profile.access_org %} diff --git a/content/organizations/organizing-members-into-teams/requesting-to-add-a-child-team.md b/content/organizations/organizing-members-into-teams/requesting-to-add-a-child-team.md index 46f069849c91..7e23d351609a 100644 --- a/content/organizations/organizing-members-into-teams/requesting-to-add-a-child-team.md +++ b/content/organizations/organizing-members-into-teams/requesting-to-add-a-child-team.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Add a child team --- diff --git a/content/organizations/organizing-members-into-teams/requesting-to-add-or-change-a-parent-team.md b/content/organizations/organizing-members-into-teams/requesting-to-add-or-change-a-parent-team.md index 201fec97e0b6..958ac2bc9db1 100644 --- a/content/organizations/organizing-members-into-teams/requesting-to-add-or-change-a-parent-team.md +++ b/content/organizations/organizing-members-into-teams/requesting-to-add-or-change-a-parent-team.md @@ -8,9 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Add or change parent team --- diff --git a/content/organizations/organizing-members-into-teams/setting-your-teams-profile-picture.md b/content/organizations/organizing-members-into-teams/setting-your-teams-profile-picture.md index a109d3918e30..d3f4a2cf1b63 100644 --- a/content/organizations/organizing-members-into-teams/setting-your-teams-profile-picture.md +++ b/content/organizations/organizing-members-into-teams/setting-your-teams-profile-picture.md @@ -9,9 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Organizations - - Teams shortTitle: Team profile picture --- Unless you set a profile picture for a team, the team profile picture will match the organization's profile picture. diff --git a/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md b/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md index 556d63867a60..3ca048429037 100644 --- a/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md +++ b/content/organizations/organizing-members-into-teams/synchronizing-a-team-with-an-identity-provider-group.md @@ -7,9 +7,6 @@ permissions: 'Organization owners can synchronize a {% data variables.product.gi versions: ghec: '*' ghes: '*' -topics: - - Organizations - - Teams shortTitle: Synchronize with an IdP --- diff --git a/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/about-merge-conflicts.md b/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/about-merge-conflicts.md index 3b6477275dfc..477d82aaa4fd 100644 --- a/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/about-merge-conflicts.md +++ b/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/about-merge-conflicts.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Pull requests --- Git can often resolve differences between branches and merge them automatically. Usually, the changes are on different lines, or even in different files, which makes the merge simple for computers to understand. However, sometimes there are competing changes that Git can't resolve without your help. Often, merge conflicts happen when people make different changes to the same line of the same file, or when one person edits a file and another person deletes the same file. diff --git a/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/index.md b/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/index.md index 5ca2e98c3649..137bb43795fc 100644 --- a/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/index.md +++ b/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/index.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests children: - /about-merge-conflicts - /resolving-a-merge-conflict-on-github diff --git a/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github.md b/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github.md index a857e87e05f7..3599fb8bd187 100644 --- a/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github.md +++ b/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-on-github.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Resolve merge conflicts --- You can only resolve merge conflicts on {% data variables.product.github %} that are caused by competing line changes, such as when people make different changes to the same line of the same file on different branches in your Git repository. For all other types of merge conflicts, you must resolve the conflict locally on the command line. For more information, see [AUTOTITLE](/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line). diff --git a/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line.md b/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line.md index a47c0198eb75..dcdb803acbd3 100644 --- a/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line.md +++ b/content/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Resolve merge conflicts in Git --- Merge conflicts occur when competing changes are made to the same line of a file, or when one person edits a file and another person deletes the same file. For more information, see [AUTOTITLE](/pull-requests/collaborating-with-pull-requests/addressing-merge-conflicts/about-merge-conflicts). diff --git a/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks.md b/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks.md index e18a320c50a4..75c1e438e37b 100644 --- a/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks.md +++ b/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests --- Status checks are based on external processes, such as continuous integration builds, which run for each push you make to a repository. You can see the _pending_, _passing_, or _failing_ state of status checks next to individual commits in your pull request. diff --git a/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md b/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md index 9d15773cac44..858faff8bb41 100644 --- a/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md +++ b/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/index.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests children: - /about-status-checks - /troubleshooting-required-status-checks diff --git a/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks.md b/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks.md index 98aab41cc643..c7858a8694fa 100644 --- a/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks.md +++ b/content/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/troubleshooting-required-status-checks.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories redirect_from: - /github/administering-a-repository/troubleshooting-required-status-checks - /github/administering-a-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks diff --git a/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md b/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md index 0129fa41ab4c..5865690c38aa 100644 --- a/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md +++ b/content/pull-requests/collaborating-with-pull-requests/getting-started/about-collaborative-development-models.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Collaborative development --- ## Fork and pull model diff --git a/content/pull-requests/collaborating-with-pull-requests/getting-started/helping-others-review-your-changes.md b/content/pull-requests/collaborating-with-pull-requests/getting-started/helping-others-review-your-changes.md index 73dd181870a0..7a3f208e78c0 100644 --- a/content/pull-requests/collaborating-with-pull-requests/getting-started/helping-others-review-your-changes.md +++ b/content/pull-requests/collaborating-with-pull-requests/getting-started/helping-others-review-your-changes.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Help others review your changes --- diff --git a/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md b/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md index 0b3b19f02ef5..7597f96c0950 100644 --- a/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md +++ b/content/pull-requests/collaborating-with-pull-requests/getting-started/index.md @@ -10,11 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests - - Issues - - Discussions - - Fundamentals children: - /about-collaborative-development-models - /helping-others-review-your-changes diff --git a/content/pull-requests/collaborating-with-pull-requests/getting-started/managing-and-standardizing-pull-requests.md b/content/pull-requests/collaborating-with-pull-requests/getting-started/managing-and-standardizing-pull-requests.md index 3bb9eecc26ed..4acb7fc58fea 100644 --- a/content/pull-requests/collaborating-with-pull-requests/getting-started/managing-and-standardizing-pull-requests.md +++ b/content/pull-requests/collaborating-with-pull-requests/getting-started/managing-and-standardizing-pull-requests.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Manage and standardize pull requests --- diff --git a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/about-pull-request-merges.md b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/about-pull-request-merges.md index 16c5b62fc1c1..b7b2313158b4 100644 --- a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/about-pull-request-merges.md +++ b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/about-pull-request-merges.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests --- ## Merge your commits diff --git a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request.md index 0e401ef77273..e38507a096f0 100644 --- a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests redirect_from: - /github/collaborating-with-issues-and-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request - /github/collaborating-with-issues-and-pull-requests/automatically-merging-a-pull-request diff --git a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request.md index 2693aa767a94..e411fdfea144 100644 --- a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests --- > [!TIP] diff --git a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/index.md b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/index.md index 4b48245e32ae..28966f048fde 100644 --- a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/index.md +++ b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/index.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests children: - /about-pull-request-merges - /merging-a-pull-request diff --git a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request-with-a-merge-queue.md b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request-with-a-merge-queue.md index c2255e122ee7..e0878f9b4e5a 100644 --- a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request-with-a-merge-queue.md +++ b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request-with-a-merge-queue.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Pull requests shortTitle: Merge PR with merge queue redirect_from: - /pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/adding-a-pull-request-to-the-merge-queue diff --git a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request.md index c917b5192385..c0b71f784c90 100644 --- a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests --- ## About pull request merges diff --git a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/reverting-a-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/reverting-a-pull-request.md index dca6646a4c72..67a085664060 100644 --- a/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/reverting-a-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/reverting-a-pull-request.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests --- ## About reverting a pull request diff --git a/content/pull-requests/collaborating-with-pull-requests/index.md b/content/pull-requests/collaborating-with-pull-requests/index.md index 7554df95c3a9..9d430a206f01 100644 --- a/content/pull-requests/collaborating-with-pull-requests/index.md +++ b/content/pull-requests/collaborating-with-pull-requests/index.md @@ -13,8 +13,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests children: - /getting-started - /working-with-forks diff --git a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches.md b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches.md index fb033b84d6ab..2c73bdd1f13c 100644 --- a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches.md +++ b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-branches.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests --- ## About branches diff --git a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-comparing-branches-in-pull-requests.md b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-comparing-branches-in-pull-requests.md index 285d1a434294..8c35c33ced71 100644 --- a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-comparing-branches-in-pull-requests.md +++ b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-comparing-branches-in-pull-requests.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Compare branches --- diff --git a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests.md b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests.md index b6f81a382f41..b3af4e9e1ba1 100644 --- a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests.md +++ b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests --- Pull requests are proposals to merge code changes into a project. A pull request is {% data variables.product.github %}'s foundational **collaboration feature**, letting you discuss and review changes before merging them. This helps teams work together, catch issues early, and maintain code quality. diff --git a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-base-branch-of-a-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-base-branch-of-a-pull-request.md index c454dd27bf2a..7159f39a083a 100644 --- a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-base-branch-of-a-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-base-branch-of-a-pull-request.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Change the base branch --- diff --git a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request.md index 69cbf4262a24..8c5790ef5977 100644 --- a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Change the state --- ## Marking a pull request as ready for review diff --git a/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 b/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 index 72a713400d4c..0e4c06800730 100644 --- a/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 +++ b/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 @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Commit to PR branch from fork --- You can only make commits on pull request branches that: diff --git a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork.md b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork.md index c38db124b379..d85e5fedc26c 100644 --- a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork.md +++ b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Create a PR from a fork --- If your pull request compares your topic branch with a branch in the upstream repository as the base branch, then your topic branch is also called the "compare branch" of the pull request. diff --git a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request.md index 0938070e897a..90ff76a4f801 100644 --- a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests --- If you want to create a new branch for your pull request and do not have write permissions to the repository, you can fork the repository first. For more information, see [AUTOTITLE](/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork) and [AUTOTITLE](/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks). diff --git a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-and-deleting-branches-within-your-repository.md b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-and-deleting-branches-within-your-repository.md index 0c2adb01e54e..6b93a529b3b8 100644 --- a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-and-deleting-branches-within-your-repository.md +++ b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-and-deleting-branches-within-your-repository.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Create & delete branches --- diff --git a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/index.md b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/index.md index 162bd00d3f76..42562e848dda 100644 --- a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/index.md +++ b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/index.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests children: - /about-branches - /creating-and-deleting-branches-within-your-repository diff --git a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/keeping-your-pull-request-in-sync-with-the-base-branch.md b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/keeping-your-pull-request-in-sync-with-the-base-branch.md index 2a6ceb44bf7d..ecbc2d648274 100644 --- a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/keeping-your-pull-request-in-sync-with-the-base-branch.md +++ b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/keeping-your-pull-request-in-sync-with-the-base-branch.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Update the head branch --- diff --git a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review.md b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review.md index bf49380fbebe..be9394e0f3b3 100644 --- a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review.md +++ b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Request a PR review --- diff --git a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/using-query-parameters-to-create-a-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/using-query-parameters-to-create-a-pull-request.md index 5008cbd2cbc6..846b8667a59f 100644 --- a/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/using-query-parameters-to-create-a-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/using-query-parameters-to-create-a-pull-request.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests --- You can use query parameters to open pull requests. Query parameters are optional parts of a URL you can customize to share a specific web page view, such as search filter results or a pull request template on {% data variables.product.prodname_dotcom %}. To create your own query parameters, you must match the key and value pair. For more information on creating pull request templates, see [AUTOTITLE](/communities/using-templates-to-encourage-useful-issues-and-pull-requests/creating-a-pull-request-template-for-your-repository). diff --git a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews.md b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews.md index 4cc440566f1e..c44d699f91aa 100644 --- a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews.md +++ b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: About PR reviews --- diff --git a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/approving-a-pull-request-with-required-reviews.md b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/approving-a-pull-request-with-required-reviews.md index 5968b5cb35f9..2037b30cdd24 100644 --- a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/approving-a-pull-request-with-required-reviews.md +++ b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/approving-a-pull-request-with-required-reviews.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Required reviews --- For more information about required reviews, see [AUTOTITLE](/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches#require-pull-request-reviews-before-merging). diff --git a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally.md b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally.md index 412ab7d49248..79e7658cd03a 100644 --- a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally.md +++ b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/checking-out-pull-requests-locally.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Check out a PR locally --- diff --git a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/commenting-on-a-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/commenting-on-a-pull-request.md index a95b8e915b75..61a8fb6da749 100644 --- a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/commenting-on-a-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/commenting-on-a-pull-request.md @@ -13,8 +13,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Comment on a PR --- ## About pull request comments diff --git a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review.md b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review.md index 71c8012298b4..a31c601f1a6a 100644 --- a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review.md +++ b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Dismiss a PR review --- {% data reusables.pull_requests.dismiss_review %} diff --git a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/filtering-files-in-a-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/filtering-files-in-a-pull-request.md index e31e26c270cd..c1595beceebe 100644 --- a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/filtering-files-in-a-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/filtering-files-in-a-pull-request.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Filter files --- You can filter files in a pull request by file extension type, such as `.html` or `.js`, lack of an extension, code ownership, or dotfiles. You can also use the file tree to filter by file path, navigate between files, or see a high level view of the changed files. diff --git a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/finding-changed-methods-and-functions-in-a-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/finding-changed-methods-and-functions-in-a-pull-request.md index 5c6724b920de..b17d4bc772dc 100644 --- a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/finding-changed-methods-and-functions-in-a-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/finding-changed-methods-and-functions-in-a-pull-request.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Methods & functions --- Anyone with read access to a repository can see a summary list of the functions and methods changes in certain files of a pull request. diff --git a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/incorporating-feedback-in-your-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/incorporating-feedback-in-your-pull-request.md index f02f6fe0aaa4..aee3a2ff594c 100644 --- a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/incorporating-feedback-in-your-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/incorporating-feedback-in-your-pull-request.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Incorporate feedback --- ## Applying suggested changes diff --git a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/index.md b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/index.md index cb2edbf7166b..c043af16f8d9 100644 --- a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/index.md +++ b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/index.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests children: - /about-pull-request-reviews - /reviewing-proposed-changes-in-a-pull-request diff --git a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-dependency-changes-in-a-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-dependency-changes-in-a-pull-request.md index 9dada939c9b8..7c75e4bdfb8f 100644 --- a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-dependency-changes-in-a-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-dependency-changes-in-a-pull-request.md @@ -7,12 +7,6 @@ versions: ghes: '*' ghec: '*' type: how_to -topics: - - Pull requests - - Dependency review - - Code Security - - Vulnerabilities - - Dependencies redirect_from: - /github/collaborating-with-issues-and-pull-requests/reviewing-changes-in-pull-requests/reviewing-dependency-changes-in-a-pull-request - /github/collaborating-with-issues-and-pull-requests/reviewing-dependency-changes-in-a-pull-request diff --git a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md index 25f614f95cc5..179d44d8b5ba 100644 --- a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md +++ b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/reviewing-proposed-changes-in-a-pull-request.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Review proposed changes --- ## About reviewing pull requests diff --git a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/viewing-a-pull-request-review.md b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/viewing-a-pull-request-review.md index bf8fe714c70d..3877e3419e7c 100644 --- a/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/viewing-a-pull-request-review.md +++ b/content/pull-requests/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/viewing-a-pull-request-review.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: View a PR review --- {% data reusables.search.requested_reviews_search %} diff --git a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks.md b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks.md index 1dffacb6c858..d1e6b8776dc4 100644 --- a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks.md +++ b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests --- ## About forks diff --git a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/about-permissions-and-visibility-of-forks.md b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/about-permissions-and-visibility-of-forks.md index 9a45e1c23602..4af782227b72 100644 --- a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/about-permissions-and-visibility-of-forks.md +++ b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/about-permissions-and-visibility-of-forks.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests --- ## About permissions for creating forks diff --git a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork.md b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork.md index 7e97b6bef195..b49578f26927 100644 --- a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork.md +++ b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Allow changes to a branch --- When a user creates a pull request from their fork, the user generally has the authority to decide if other users can commit to the pull request's compare branch. If the pull request author wants greater collaboration, they can grant maintainers of the upstream repository (that is, anyone with push access to the upstream repository) permission to commit to the pull request's compare branch. To learn more about upstream repositories, see [AUTOTITLE](/pull-requests/collaborating-with-pull-requests/working-with-forks/about-forks). diff --git a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/configuring-a-remote-repository-for-a-fork.md b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/configuring-a-remote-repository-for-a-fork.md index 370f1f9e9bb0..0947569c8ec4 100644 --- a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/configuring-a-remote-repository-for-a-fork.md +++ b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/configuring-a-remote-repository-for-a-fork.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Configure a remote repository --- {% data reusables.command_line.open_the_multi_os_terminal %} diff --git a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/detaching-a-fork.md b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/detaching-a-fork.md index 155efaab5762..d9a0803022a0 100644 --- a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/detaching-a-fork.md +++ b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/detaching-a-fork.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests permissions: People with admin access for a forked repository can delete the forked repository. --- diff --git a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo.md b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo.md index 0909181fdff5..327f6fd85e89 100644 --- a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo.md +++ b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo.md @@ -8,17 +8,12 @@ redirect_from: - /github/getting-started-with-github/fork-a-repo - /github/getting-started-with-github/quickstart/fork-a-repo - /get-started/quickstart/fork-a-repo -intro: A fork is a new repository that shares code and visibility settings with the original “upstream” repository. +intro: A fork is a new repository that shares code and visibility settings with the original upstream repository. permissions: '{% data reusables.enterprise-accounts.emu-permission-fork %}' versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests - - Issues - - Notifications - - Accounts --- ## About forks 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 c9757f5cddea..5cdd2b561b3b 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 @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests children: - /about-forks - /fork-a-repo diff --git a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork.md b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork.md index bed2b269b7a2..0b33d8504a71 100644 --- a/content/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork.md +++ b/content/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork.md @@ -15,8 +15,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests permissions: People with write access for a forked repository can sync the fork to the upstream repository. --- 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 1777995fc2d4..8d8c0b3159ce 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 @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: Deleted or changes visibility --- {% data reusables.repositories.deleted_forks_from_private_repositories_warning %} diff --git a/content/pull-requests/index.md b/content/pull-requests/index.md index 70264b2906af..aa825f992ac8 100644 --- a/content/pull-requests/index.md +++ b/content/pull-requests/index.md @@ -26,8 +26,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Pull requests children: - /committing-changes-to-your-project - /collaborating-with-pull-requests diff --git a/content/repositories/archiving-a-github-repository/about-archiving-content-and-data-on-github.md b/content/repositories/archiving-a-github-repository/about-archiving-content-and-data-on-github.md index 937700ff8c9f..28516dd3af3f 100644 --- a/content/repositories/archiving-a-github-repository/about-archiving-content-and-data-on-github.md +++ b/content/repositories/archiving-a-github-repository/about-archiving-content-and-data-on-github.md @@ -8,8 +8,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Repositories shortTitle: Archive content & data --- ## Persistence of public repositories diff --git a/content/repositories/archiving-a-github-repository/archiving-repositories.md b/content/repositories/archiving-a-github-repository/archiving-repositories.md index daf4cff1cd8b..f0fb36c3d770 100644 --- a/content/repositories/archiving-a-github-repository/archiving-repositories.md +++ b/content/repositories/archiving-a-github-repository/archiving-repositories.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- ## About repository archival diff --git a/content/repositories/archiving-a-github-repository/backing-up-a-repository.md b/content/repositories/archiving-a-github-repository/backing-up-a-repository.md index 7a325d7041f5..f56e768d5be2 100644 --- a/content/repositories/archiving-a-github-repository/backing-up-a-repository.md +++ b/content/repositories/archiving-a-github-repository/backing-up-a-repository.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- You may want to take backups of repositories for archiving or disaster recovery purposes. diff --git a/content/repositories/archiving-a-github-repository/index.md b/content/repositories/archiving-a-github-repository/index.md index ec0d79231451..3aa0f225f1bc 100644 --- a/content/repositories/archiving-a-github-repository/index.md +++ b/content/repositories/archiving-a-github-repository/index.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /archiving-repositories - /about-archiving-content-and-data-on-github diff --git a/content/repositories/archiving-a-github-repository/referencing-and-citing-content.md b/content/repositories/archiving-a-github-repository/referencing-and-citing-content.md index af8884b679ff..634c60a24927 100644 --- a/content/repositories/archiving-a-github-repository/referencing-and-citing-content.md +++ b/content/repositories/archiving-a-github-repository/referencing-and-citing-content.md @@ -8,8 +8,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Repositories shortTitle: Reference & cite content --- ## Issuing a persistent identifier for your repository with Zenodo diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/about-merge-methods-on-github.md b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/about-merge-methods-on-github.md index b27705ce6cb1..2dac01a71717 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/about-merge-methods-on-github.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/about-merge-methods-on-github.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: About merge methods --- {% data reusables.pull_requests.configure_pull_request_merges_intro %} You can enforce one type of merge method, such as commit squashing or rebasing, by only enabling the desired method for your repository. diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-merging-for-pull-requests.md b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-merging-for-pull-requests.md index 6458525d22d2..a5b308fbe6e0 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-merging-for-pull-requests.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-merging-for-pull-requests.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Configure commit merging --- {% data reusables.pull_requests.configure_pull_request_merges_intro %} diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-rebasing-for-pull-requests.md b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-rebasing-for-pull-requests.md index 685a05fe7e7d..ff5a80fbfc0d 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-rebasing-for-pull-requests.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-rebasing-for-pull-requests.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Configure commit rebasing --- {% data reusables.pull_requests.configure_pull_request_merges_intro %} diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-squashing-for-pull-requests.md b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-squashing-for-pull-requests.md index 97f70146c93a..2e0500b7b4cf 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-squashing-for-pull-requests.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/configuring-commit-squashing-for-pull-requests.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Configure commit squashing --- {% data reusables.pull_requests.configure_pull_request_merges_intro %} diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/index.md b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/index.md index 42a119a971c7..ac36dd46c388 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/index.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/index.md @@ -8,8 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /about-merge-methods-on-github - /configuring-commit-merging-for-pull-requests diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-a-merge-queue.md b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-a-merge-queue.md index e2410df12959..9c3e99f6db81 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-a-merge-queue.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-a-merge-queue.md @@ -7,9 +7,6 @@ versions: ghes: '*' permissions: People with admin permissions can manage merge queues for pull requests targeting selected branches of a repository. product: '{% data reusables.gated-features.merge-queue %}' -topics: - - Repositories - - Pull requests shortTitle: Managing merge queue redirect_from: - /repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/using-a-merge-queue diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-auto-merge-for-pull-requests-in-your-repository.md b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-auto-merge-for-pull-requests-in-your-repository.md index c1ea81d75a38..57e49c26438e 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-auto-merge-for-pull-requests-in-your-repository.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-auto-merge-for-pull-requests-in-your-repository.md @@ -7,8 +7,6 @@ versions: ghes: '*' ghec: '*' permissions: People with maintainer permissions can manage auto-merge for pull requests in a repository. -topics: - - Repositories redirect_from: - /github/administering-a-repository/managing-auto-merge-for-pull-requests-in-your-repository - /github/administering-a-repository/configuring-pull-request-merges/managing-auto-merge-for-pull-requests-in-your-repository diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-suggestions-to-update-pull-request-branches.md b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-suggestions-to-update-pull-request-branches.md index 07918c427173..3db09a7adbc9 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-suggestions-to-update-pull-request-branches.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-suggestions-to-update-pull-request-branches.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Manage branch updates permissions: People with maintainer permissions can enable or disable the setting to suggest updating pull request branches. --- diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-the-automatic-deletion-of-branches.md b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-the-automatic-deletion-of-branches.md index 462b9407a5a9..9ee746683917 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-the-automatic-deletion-of-branches.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-the-automatic-deletion-of-branches.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Automatic branch deletion --- Anyone with admin permissions to a repository can enable or disable the automatic deletion of branches. Branch protection rules and repository rules can also prevent branches being automatically deleted. For more information, see{% ifversion fpt or ghec %} [AUTOTITLE](/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/about-rulesets) and{% endif %} [AUTOTITLE](/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches). diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/index.md b/content/repositories/configuring-branches-and-merges-in-your-repository/index.md index ba38d399559b..9799f77ae720 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/index.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/index.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /managing-branches-in-your-repository - /configuring-pull-request-merges diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/changing-the-default-branch.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/changing-the-default-branch.md index 4eab63a0579f..52e0562217d1 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/changing-the-default-branch.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/changing-the-default-branch.md @@ -11,8 +11,6 @@ redirect_from: - /articles/setting-the-default-branch - /github/administering-a-repository/changing-the-default-branch - /github/administering-a-repository/managing-branches-in-your-repository/changing-the-default-branch -topics: - - Repositories shortTitle: Change the default branch --- ## About changing the default branch diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md index fa6669892178..5ca7123faaf4 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/deleting-and-restoring-branches-in-a-pull-request.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Delete & restore branches --- ## Deleting a branch used for a pull request diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/index.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/index.md index 2db9292613d7..00511c13a16a 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/index.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/index.md @@ -8,8 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /viewing-branches-in-your-repository - /renaming-a-branch diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/renaming-a-branch.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/renaming-a-branch.md index e0a28c2c0319..b8fbb3272f4c 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/renaming-a-branch.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/renaming-a-branch.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories redirect_from: - /github/administering-a-repository/renaming-a-branch - /github/administering-a-repository/managing-branches-in-your-repository/renaming-a-branch diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/viewing-branches-in-your-repository.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/viewing-branches-in-your-repository.md index c7bb78687d46..03eb658a4b7e 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/viewing-branches-in-your-repository.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/viewing-branches-in-your-repository.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: View branches --- {% data reusables.repositories.navigate-to-repo %} diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches.md index 19757a2f681d..3bb71bcf90fa 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches.md @@ -22,8 +22,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- ## About branch protection rules diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/index.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/index.md index 218adcddfc36..06dd2889ba79 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/index.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/index.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /about-protected-branches - /managing-a-branch-protection-rule diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/managing-a-branch-protection-rule.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/managing-a-branch-protection-rule.md index 31c06622d80e..c9fd8b5d27d4 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/managing-a-branch-protection-rule.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/managing-a-branch-protection-rule.md @@ -24,8 +24,6 @@ versions: ghes: '*' ghec: '*' permissions: 'People with admin permissions or a custom role with the "edit repository rules" permission to a repository can manage branch protection rules.' -topics: - - Repositories shortTitle: Branch protection rule --- ## About branch protection rules diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/about-rulesets.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/about-rulesets.md index a697d6ee97e4..a6b781a2dc60 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/about-rulesets.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/about-rulesets.md @@ -7,8 +7,6 @@ versions: ghec: '*' ghes: '*' permissions: '{% data reusables.repositories.repo-rules-permissions %}' -topics: - - Repositories shortTitle: About rulesets --- diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/available-rules-for-rulesets.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/available-rules-for-rulesets.md index 7c61a876801a..0a97bfb4477d 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/available-rules-for-rulesets.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/available-rules-for-rulesets.md @@ -7,8 +7,6 @@ versions: ghec: '*' ghes: '*' permissions: '{% data reusables.repositories.repo-rules-permissions %}' -topics: - - Repositories shortTitle: Available rules redirect_from: - /actions/sharing-automations/required-workflows diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/creating-rulesets-for-a-repository.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/creating-rulesets-for-a-repository.md index 0b714079366d..9f343b93e22a 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/creating-rulesets-for-a-repository.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/creating-rulesets-for-a-repository.md @@ -7,8 +7,6 @@ versions: ghec: '*' ghes: '*' permissions: '{% data reusables.repositories.repo-rules-permissions %}' -topics: - - Repositories shortTitle: Create a ruleset --- diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/index.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/index.md index 2fe369127983..b6891fe915bb 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/index.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/index.md @@ -4,8 +4,6 @@ intro: 'Rulesets help you to control how people can interact with branches and t product: '{% data reusables.gated-features.repo-rules %}' versions: feature: repo-rules -topics: - - Repositories children: - /about-rulesets - /creating-rulesets-for-a-repository diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/managing-rulesets-for-a-repository.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/managing-rulesets-for-a-repository.md index 57f87eed0d8b..d46f52df7cbc 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/managing-rulesets-for-a-repository.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/managing-rulesets-for-a-repository.md @@ -7,8 +7,6 @@ versions: ghec: '*' ghes: '*' permissions: '{% data reusables.repositories.repo-rules-permissions %}' -topics: - - Repositories shortTitle: Manage a ruleset --- diff --git a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/troubleshooting-rules.md b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/troubleshooting-rules.md index e7cd8b735ae2..cd0b5dc0b38c 100644 --- a/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/troubleshooting-rules.md +++ b/content/repositories/configuring-branches-and-merges-in-your-repository/managing-rulesets/troubleshooting-rules.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Repositories shortTitle: Troubleshooting --- diff --git a/content/repositories/creating-and-managing-repositories/about-repositories.md b/content/repositories/creating-and-managing-repositories/about-repositories.md index 2492d26efe52..b75ea4d18b9b 100644 --- a/content/repositories/creating-and-managing-repositories/about-repositories.md +++ b/content/repositories/creating-and-managing-repositories/about-repositories.md @@ -15,8 +15,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- ## About repositories diff --git a/content/repositories/creating-and-managing-repositories/access-to-repositories.md b/content/repositories/creating-and-managing-repositories/access-to-repositories.md index 698940d1703c..b9f78f987fc5 100644 --- a/content/repositories/creating-and-managing-repositories/access-to-repositories.md +++ b/content/repositories/creating-and-managing-repositories/access-to-repositories.md @@ -5,11 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Accounts - - Repositories - - Privacy - - Open Source shortTitle: Access to repositories contentType: other redirect_from: diff --git a/content/repositories/creating-and-managing-repositories/best-practices-for-repositories.md b/content/repositories/creating-and-managing-repositories/best-practices-for-repositories.md index 67c230e20171..eebe0e3e0b47 100644 --- a/content/repositories/creating-and-managing-repositories/best-practices-for-repositories.md +++ b/content/repositories/creating-and-managing-repositories/best-practices-for-repositories.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- ## Create a README file diff --git a/content/repositories/creating-and-managing-repositories/cloning-a-repository.md b/content/repositories/creating-and-managing-repositories/cloning-a-repository.md index 8196ad2de3b1..0734120c8ff8 100644 --- a/content/repositories/creating-and-managing-repositories/cloning-a-repository.md +++ b/content/repositories/creating-and-managing-repositories/cloning-a-repository.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- ## About cloning a repository diff --git a/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md b/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md index b919a65a7f9b..c75e572dc8fb 100644 --- a/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md +++ b/content/repositories/creating-and-managing-repositories/creating-a-new-repository.md @@ -15,8 +15,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- > [!TIP] diff --git a/content/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template.md b/content/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template.md index d84d0631a4ca..1ee81ea692fe 100644 --- a/content/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template.md +++ b/content/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Create from a template --- ## About repository templates diff --git a/content/repositories/creating-and-managing-repositories/creating-a-template-repository.md b/content/repositories/creating-and-managing-repositories/creating-a-template-repository.md index 86cbf6256ae0..9eae4abb00e6 100644 --- a/content/repositories/creating-and-managing-repositories/creating-a-template-repository.md +++ b/content/repositories/creating-and-managing-repositories/creating-a-template-repository.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Create a template repo --- diff --git a/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md b/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md index ac6fe17a1b83..96416293a1bc 100644 --- a/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md +++ b/content/repositories/creating-and-managing-repositories/creating-an-issues-only-repository.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Issues-only repository --- 1. Create a **private** repository to host the source code from your project. diff --git a/content/repositories/creating-and-managing-repositories/deleting-a-repository.md b/content/repositories/creating-and-managing-repositories/deleting-a-repository.md index 7e172dd88ad5..147dd396d07e 100644 --- a/content/repositories/creating-and-managing-repositories/deleting-a-repository.md +++ b/content/repositories/creating-and-managing-repositories/deleting-a-repository.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- {% data reusables.organizations.owners-and-admins-can %} delete an organization repository, and these users may be prevented from deleting a repository by an organization or enterprise policy. {% data reusables.organizations.new-repo-permissions-more-info %} diff --git a/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md b/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md index c4f546ebd906..119e084a14b6 100644 --- a/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md +++ b/content/repositories/creating-and-managing-repositories/duplicating-a-repository.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- {% ifversion fpt or ghec %} diff --git a/content/repositories/creating-and-managing-repositories/index.md b/content/repositories/creating-and-managing-repositories/index.md index b5d0753944ff..fcd1db216962 100644 --- a/content/repositories/creating-and-managing-repositories/index.md +++ b/content/repositories/creating-and-managing-repositories/index.md @@ -8,8 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /about-repositories - /best-practices-for-repositories diff --git a/content/repositories/creating-and-managing-repositories/quickstart-for-repositories.md b/content/repositories/creating-and-managing-repositories/quickstart-for-repositories.md index f2c38b492842..842220031a3d 100644 --- a/content/repositories/creating-and-managing-repositories/quickstart-for-repositories.md +++ b/content/repositories/creating-and-managing-repositories/quickstart-for-repositories.md @@ -12,11 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests - - Issues - - Notifications - - Accounts --- ## Create a repository diff --git a/content/repositories/creating-and-managing-repositories/renaming-a-repository.md b/content/repositories/creating-and-managing-repositories/renaming-a-repository.md index 7e803588b7e2..d7aaaee70b52 100644 --- a/content/repositories/creating-and-managing-repositories/renaming-a-repository.md +++ b/content/repositories/creating-and-managing-repositories/renaming-a-repository.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- When you rename a repository, all existing information, with the exception of project site URLs, is automatically redirected to the new name, including: diff --git a/content/repositories/creating-and-managing-repositories/repository-limits.md b/content/repositories/creating-and-managing-repositories/repository-limits.md index e41823d9a111..8a2d1cefa697 100644 --- a/content/repositories/creating-and-managing-repositories/repository-limits.md +++ b/content/repositories/creating-and-managing-repositories/repository-limits.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- Certain types of repository resources can be quite large, requiring excessive processing on {% data variables.product.github %}. Because of this, limits are set to ensure requests complete in a reasonable amount of time. Exceeding the recommended maximum limit increases the risk of degraded repository health, which includes, but is not limited to, slow response times for basic Git operations and UI latency. diff --git a/content/repositories/creating-and-managing-repositories/restoring-a-deleted-repository.md b/content/repositories/creating-and-managing-repositories/restoring-a-deleted-repository.md index 6c08a3cbcc84..dc5d0276329e 100644 --- a/content/repositories/creating-and-managing-repositories/restoring-a-deleted-repository.md +++ b/content/repositories/creating-and-managing-repositories/restoring-a-deleted-repository.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Repositories shortTitle: Restore deleted repository --- diff --git a/content/repositories/creating-and-managing-repositories/transferring-a-repository.md b/content/repositories/creating-and-managing-repositories/transferring-a-repository.md index 809a6e09b6ae..15ae83da879c 100644 --- a/content/repositories/creating-and-managing-repositories/transferring-a-repository.md +++ b/content/repositories/creating-and-managing-repositories/transferring-a-repository.md @@ -18,8 +18,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- ## About repository transfers diff --git a/content/repositories/creating-and-managing-repositories/troubleshooting-cloning-errors.md b/content/repositories/creating-and-managing-repositories/troubleshooting-cloning-errors.md index 83ad1568d435..a5e454b08135 100644 --- a/content/repositories/creating-and-managing-repositories/troubleshooting-cloning-errors.md +++ b/content/repositories/creating-and-managing-repositories/troubleshooting-cloning-errors.md @@ -16,8 +16,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- ## HTTPS cloning errors diff --git a/content/repositories/creating-and-managing-repositories/viewing-all-your-repositories.md b/content/repositories/creating-and-managing-repositories/viewing-all-your-repositories.md index c27117ae6eeb..246dfe7a7533 100644 --- a/content/repositories/creating-and-managing-repositories/viewing-all-your-repositories.md +++ b/content/repositories/creating-and-managing-repositories/viewing-all-your-repositories.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghec: '*' ghes: '>=3.22' -topics: - - Repositories shortTitle: View all repositories type: how_to --- diff --git a/content/repositories/index.md b/content/repositories/index.md index 99a8e769c766..0808703ef128 100644 --- a/content/repositories/index.md +++ b/content/repositories/index.md @@ -29,8 +29,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /creating-and-managing-repositories - /managing-your-repositorys-settings-and-features diff --git a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-citation-files.md b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-citation-files.md index 81f39daa5dbd..1f3ae6f33ba0 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-citation-files.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-citation-files.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- ## About CITATION files diff --git a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md index 62903eb70cbe..d49f3e0b49b3 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- The people you choose as code owners must have write permissions for the repository. When the code owner is a team, that team must be visible and it must have write permissions, even if all the individual members of the team already have write permissions directly, through organization membership, or through another team membership. diff --git a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md index e2466d4fe321..104f5a68a34a 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-readmes.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- ## About READMEs diff --git a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md index 31d6b6620b3e..5f1d24fc9a45 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-repository-languages.md @@ -14,8 +14,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Repository languages --- {% data variables.product.github %} uses the open source [Linguist library](https://github.com/github-linguist/linguist) to diff --git a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md index acfb98592f8d..136e306793fa 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Classify with topics --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/customizing-your-repositorys-social-media-preview.md b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/customizing-your-repositorys-social-media-preview.md index b3b3eb7a1d4c..ce3532e5a2a0 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/customizing-your-repositorys-social-media-preview.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/customizing-your-repositorys-social-media-preview.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Social media preview --- Until you add an image, repository links expand to show basic information about the repository and the owner's avatar. Adding an image to your repository can help identify your project across various social platforms. diff --git a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository.md index a400e43e8c77..3bd2c239bbe8 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository.md @@ -9,8 +9,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Repositories shortTitle: Display a sponsor button --- ## About FUNDING files diff --git a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/index.md b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/index.md index 9ec437ca8b29..cd1ee3bf4b25 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/index.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/index.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /about-readmes - /licensing-a-repository diff --git a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md index 0c94df4a3c40..32e1def60cd1 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/licensing-a-repository.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Repositories --- ## Choosing the right license diff --git a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/disabling-issues.md b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/disabling-issues.md index e960b254b057..253f81f5c48a 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/disabling-issues.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/disabling-issues.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests --- {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} diff --git a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/disabling-projects-in-a-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/disabling-projects-in-a-repository.md index 888091bb7956..51bd71d42f9c 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/disabling-projects-in-a-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/disabling-projects-in-a-repository.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Pull requests shortTitle: 'Disable projects' allowTitleToDifferFromFilename: true --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/disabling-pull-requests.md b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/disabling-pull-requests.md index a2520c580672..63bc25cabe14 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/disabling-pull-requests.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/disabling-pull-requests.md @@ -8,8 +8,6 @@ redirect_from: - /github/administering-a-repository/managing-repository-settings/disabling-pull-requests versions: feature: disable-restrict-prs -topics: - - Pull requests --- {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} diff --git a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/enabling-or-disabling-github-discussions-for-a-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/enabling-or-disabling-github-discussions-for-a-repository.md index 0ba50f664bf9..4193ced68813 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/enabling-or-disabling-github-discussions-for-a-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/enabling-or-disabling-github-discussions-for-a-repository.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories redirect_from: - /github/administering-a-repository/enabling-or-disabling-github-discussions-for-a-repository - /github/administering-a-repository/managing-repository-settings/enabling-or-disabling-github-discussions-for-a-repository diff --git a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/index.md b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/index.md index d7f4aea7324f..6efb06bec6bf 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/index.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/index.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /disabling-issues - /disabling-pull-requests diff --git a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md index 30b67e3c6fe9..b7ac5b1bb743 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository.md @@ -11,10 +11,6 @@ versions: ghes: '*' ghec: '*' type: how_to -topics: - - Actions - - Permissions - - Pull requests shortTitle: Manage GitHub Actions settings --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md index 97aa12b2c634..c2ee1b4228ec 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-security-and-analysis-settings-for-your-repository.md @@ -14,13 +14,6 @@ versions: ghes: '*' ghec: '*' type: how_to -topics: - - Dependabot - - Alerts - - Code Security - - Dependency graph - - Secret scanning - - Repositories shortTitle: Security & analysis --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/index.md b/content/repositories/managing-your-repositorys-settings-and-features/index.md index d5c33a07309c..082b0e4ba283 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/index.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/index.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /repository-access-and-collaboration - /customizing-your-repository diff --git a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md index 4d3d1bc517d7..d8354625a74f 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/about-email-notifications-for-pushes-to-your-repository.md @@ -13,8 +13,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Email notifications for pushes --- {% data reusables.notifications.outbound_email_tip %} diff --git a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/configuring-autolinks-to-reference-external-resources.md b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/configuring-autolinks-to-reference-external-resources.md index 8eaa1d1d0193..31edbd6a6369 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/configuring-autolinks-to-reference-external-resources.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/configuring-autolinks-to-reference-external-resources.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Configure autolinks --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/index.md b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/index.md index faaca1d3b6cd..f80389cf5801 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/index.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/index.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /setting-repository-visibility - /managing-teams-and-people-with-access-to-your-repository diff --git a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-auto-closing-issues.md b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-auto-closing-issues.md index f6ed8d6898c7..edf815d12c20 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-auto-closing-issues.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-auto-closing-issues.md @@ -6,10 +6,6 @@ versions: ghes: '>=3.18' ghec: '*' permissions: Repository administrators and maintainers can configure the automating closing of issues in the repository, once related pull requests are merged. -topics: - - Repositories - - Issues - - Pull requests shortTitle: Manage auto-closing issues allowTitleToDifferFromFilename: true --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-git-lfs-objects-in-archives-of-your-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-git-lfs-objects-in-archives-of-your-repository.md index 9aca5caee51a..abf2a1e50c0c 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-git-lfs-objects-in-archives-of-your-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-git-lfs-objects-in-archives-of-your-repository.md @@ -6,8 +6,6 @@ permissions: 'People with admin permissions for a repository can manage whether versions: fpt: '*' ghec: '*' -topics: - - Repositories redirect_from: - /github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository - /github/administering-a-repository/managing-repository-settings/managing-git-lfs-objects-in-archives-of-your-repository diff --git a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-github-models-in-your-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-github-models-in-your-repository.md index 73182fe98995..85ed52849445 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-github-models-in-your-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-github-models-in-your-repository.md @@ -5,10 +5,6 @@ intro: You can enable or disable {% data variables.product.prodname_github_model versions: feature: github-models permissions: 'Repository administrators' -topics: - - Repositories - - AI - - GitHub Models allowTitleToDifferFromFilename: true --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-pull-request-reviews-in-your-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-pull-request-reviews-in-your-repository.md index a04a26963a4e..22e120fa0972 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-pull-request-reviews-in-your-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-pull-request-reviews-in-your-repository.md @@ -4,9 +4,6 @@ intro: You can limit which users can approve or request changes to a pull reques versions: feature: pull-request-approval-limit permissions: Repository administrators can limit which users can approve or request changes to a pull request in a public repository. -topics: - - Repositories - - Pull requests shortTitle: Manage pull request reviews --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-teams-and-people-with-access-to-your-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-teams-and-people-with-access-to-your-repository.md index 6781a9dc49f9..54899ab2d85a 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-teams-and-people-with-access-to-your-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-teams-and-people-with-access-to-your-repository.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Repositories shortTitle: Teams & people --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-commit-signoff-policy-for-your-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-commit-signoff-policy-for-your-repository.md index ec692d7bf812..4d77c9ea101a 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-commit-signoff-policy-for-your-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-commit-signoff-policy-for-your-repository.md @@ -6,8 +6,6 @@ versions: ghec: '*' ghes: '*' permissions: Organization owners and repository administrators can require all commits to a repository to be signed off by the commit author. -topics: - - Repositories shortTitle: Manage the commit signoff policy --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-default-branch-name-for-your-repositories.md b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-default-branch-name-for-your-repositories.md index 23ee8e842990..5191328198d0 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-default-branch-name-for-your-repositories.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-default-branch-name-for-your-repositories.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Accounts redirect_from: - /github/setting-up-and-managing-your-github-user-account/managing-the-default-branch-name-for-your-repositories - /github/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-the-default-branch-name-for-your-repositories diff --git a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository.md index cd9f51afc3e8..6deed271ec57 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-forking-policy-for-your-repository.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Manage the forking policy --- An organization owner must allow forks of private{% ifversion ghes or ghec %} and internal{% endif %} repositories on the organization level before you can allow or disallow forks for a specific repository. For more information, see [AUTOTITLE](/organizations/managing-organization-settings/managing-the-forking-policy-for-your-organization). diff --git a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-push-policy-for-your-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-push-policy-for-your-repository.md index 874eabb00b28..f83497a0f71d 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-push-policy-for-your-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-the-push-policy-for-your-repository.md @@ -6,8 +6,6 @@ versions: ghec: '*' ghes: '*' permissions: People with admin permissions for a repository can manage the push policy for the repository. -topics: - - Repositories shortTitle: Manage the push policy --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md index a1c3e76abac4..d5fc2314e2dd 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Repository visibility --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/index.md b/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/index.md index 1eb72cf30123..ef8a9bf3663c 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/index.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/index.md @@ -14,9 +14,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Accounts - - Repositories children: - /inviting-collaborators-to-a-personal-repository - /removing-a-collaborator-from-a-personal-repository diff --git a/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/inviting-collaborators-to-a-personal-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/inviting-collaborators-to-a-personal-repository.md index fe7137779043..974a84e3b702 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/inviting-collaborators-to-a-personal-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/inviting-collaborators-to-a-personal-repository.md @@ -15,9 +15,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Accounts - - Repositories shortTitle: Invite collaborators contentType: other --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/maintaining-ownership-continuity-of-your-personal-accounts-repositories.md b/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/maintaining-ownership-continuity-of-your-personal-accounts-repositories.md index b217d75fff79..898c5ae51b97 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/maintaining-ownership-continuity-of-your-personal-accounts-repositories.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/maintaining-ownership-continuity-of-your-personal-accounts-repositories.md @@ -4,9 +4,6 @@ intro: You can invite someone to manage your user owned repositories if you are versions: fpt: '*' ghec: '*' -topics: - - Accounts - - Repositories redirect_from: - /github/setting-up-and-managing-your-github-user-account/maintaining-ownership-continuity-of-your-user-accounts-repositories - /github/setting-up-and-managing-your-github-user-account/managing-access-to-your-personal-repositories/maintaining-ownership-continuity-of-your-user-accounts-repositories diff --git a/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/permission-levels-for-a-personal-account-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/permission-levels-for-a-personal-account-repository.md index 4ac956f4f9f8..6e2a7cf6d08e 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/permission-levels-for-a-personal-account-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/permission-levels-for-a-personal-account-repository.md @@ -13,8 +13,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Accounts shortTitle: Repository permissions contentType: other --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/removing-a-collaborator-from-a-personal-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/removing-a-collaborator-from-a-personal-repository.md index 33d36f8114cc..48c20c5bf12c 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/removing-a-collaborator-from-a-personal-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/removing-a-collaborator-from-a-personal-repository.md @@ -18,9 +18,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Accounts - - Repositories shortTitle: Remove a collaborator contentType: other --- diff --git a/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/removing-yourself-from-a-collaborators-repository.md b/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/removing-yourself-from-a-collaborators-repository.md index 611f6de51dd2..4c222e9e8141 100644 --- a/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/removing-yourself-from-a-collaborators-repository.md +++ b/content/repositories/managing-your-repositorys-settings-and-features/repository-access-and-collaboration/removing-yourself-from-a-collaborators-repository.md @@ -16,9 +16,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Accounts - - Repositories shortTitle: Remove yourself contentType: other --- diff --git a/content/repositories/releasing-projects-on-github/about-releases.md b/content/repositories/releasing-projects-on-github/about-releases.md index a0cd02116c94..7e2ad2289f42 100644 --- a/content/repositories/releasing-projects-on-github/about-releases.md +++ b/content/repositories/releasing-projects-on-github/about-releases.md @@ -13,8 +13,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- ## About releases diff --git a/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md b/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md index 88201abe04e6..d7c5e0b15811 100644 --- a/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md +++ b/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Repositories shortTitle: Automated release notes communityRedirect: name: Provide GitHub Feedback diff --git a/content/repositories/releasing-projects-on-github/automation-for-release-forms-with-query-parameters.md b/content/repositories/releasing-projects-on-github/automation-for-release-forms-with-query-parameters.md index f8fac83eaf5b..80140e6de5cf 100644 --- a/content/repositories/releasing-projects-on-github/automation-for-release-forms-with-query-parameters.md +++ b/content/repositories/releasing-projects-on-github/automation-for-release-forms-with-query-parameters.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Automate release forms --- Query parameters are optional parts of a URL you can customize to share a specific web page view, such as search filter results, an issue template, or the release form page on {% data variables.product.prodname_dotcom %}. To create your own query parameters, you must match the key and value pair. diff --git a/content/repositories/releasing-projects-on-github/comparing-releases.md b/content/repositories/releasing-projects-on-github/comparing-releases.md index 1f2a6fb9278c..9340726a9482 100644 --- a/content/repositories/releasing-projects-on-github/comparing-releases.md +++ b/content/repositories/releasing-projects-on-github/comparing-releases.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories redirect_from: - /github/administering-a-repository/comparing-releases - /github/administering-a-repository/releasing-projects-on-github/comparing-releases diff --git a/content/repositories/releasing-projects-on-github/index.md b/content/repositories/releasing-projects-on-github/index.md index cfb44b2faf54..89716ede11a6 100644 --- a/content/repositories/releasing-projects-on-github/index.md +++ b/content/repositories/releasing-projects-on-github/index.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /about-releases - /managing-releases-in-a-repository diff --git a/content/repositories/releasing-projects-on-github/linking-to-releases.md b/content/repositories/releasing-projects-on-github/linking-to-releases.md index 17ec3df2c7bb..f9a2c370cf6a 100644 --- a/content/repositories/releasing-projects-on-github/linking-to-releases.md +++ b/content/repositories/releasing-projects-on-github/linking-to-releases.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- ## Linking to the latest release diff --git a/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md b/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md index ecf393c9ece9..75f61e70216a 100644 --- a/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md +++ b/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md @@ -15,8 +15,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Manage releases --- ## About release management diff --git a/content/repositories/releasing-projects-on-github/searching-a-repositorys-releases.md b/content/repositories/releasing-projects-on-github/searching-a-repositorys-releases.md index 0cadc990f355..b520caedab9e 100644 --- a/content/repositories/releasing-projects-on-github/searching-a-repositorys-releases.md +++ b/content/repositories/releasing-projects-on-github/searching-a-repositorys-releases.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Repositories --- ## Searching for releases in a repository diff --git a/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md b/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md index 258bd84d0bd3..2ceaae814858 100644 --- a/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md +++ b/content/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: View releases & tags --- diff --git a/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md b/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md index 3f23387d7777..8fa5731b45ef 100644 --- a/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md +++ b/content/repositories/viewing-activity-and-data-for-your-repository/about-repository-graphs.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- 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. diff --git a/content/repositories/viewing-activity-and-data-for-your-repository/analyzing-changes-to-a-repositorys-content.md b/content/repositories/viewing-activity-and-data-for-your-repository/analyzing-changes-to-a-repositorys-content.md index 79f6091ced3d..1088b37f44d9 100644 --- a/content/repositories/viewing-activity-and-data-for-your-repository/analyzing-changes-to-a-repositorys-content.md +++ b/content/repositories/viewing-activity-and-data-for-your-repository/analyzing-changes-to-a-repositorys-content.md @@ -17,8 +17,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Analyze changes --- diff --git a/content/repositories/viewing-activity-and-data-for-your-repository/index.md b/content/repositories/viewing-activity-and-data-for-your-repository/index.md index 03e5397d34a6..70aa8e88133f 100644 --- a/content/repositories/viewing-activity-and-data-for-your-repository/index.md +++ b/content/repositories/viewing-activity-and-data-for-your-repository/index.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /viewing-deployment-activity-for-your-repository - /about-repository-graphs diff --git a/content/repositories/viewing-activity-and-data-for-your-repository/understanding-connections-between-repositories.md b/content/repositories/viewing-activity-and-data-for-your-repository/understanding-connections-between-repositories.md index c8bde9f9f2af..fd944cfc3205 100644 --- a/content/repositories/viewing-activity-and-data-for-your-repository/understanding-connections-between-repositories.md +++ b/content/repositories/viewing-activity-and-data-for-your-repository/understanding-connections-between-repositories.md @@ -18,8 +18,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Connections between repositories --- diff --git a/content/repositories/viewing-activity-and-data-for-your-repository/using-pulse-to-view-a-summary-of-repository-activity.md b/content/repositories/viewing-activity-and-data-for-your-repository/using-pulse-to-view-a-summary-of-repository-activity.md index 70a36b0e8b70..e919776ffcc6 100644 --- a/content/repositories/viewing-activity-and-data-for-your-repository/using-pulse-to-view-a-summary-of-repository-activity.md +++ b/content/repositories/viewing-activity-and-data-for-your-repository/using-pulse-to-view-a-summary-of-repository-activity.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Using Pulse --- diff --git a/content/repositories/viewing-activity-and-data-for-your-repository/using-the-activity-view-to-see-changes-to-a-repository.md b/content/repositories/viewing-activity-and-data-for-your-repository/using-the-activity-view-to-see-changes-to-a-repository.md index aef9d81e1471..ac736f111bbc 100644 --- a/content/repositories/viewing-activity-and-data-for-your-repository/using-the-activity-view-to-see-changes-to-a-repository.md +++ b/content/repositories/viewing-activity-and-data-for-your-repository/using-the-activity-view-to-see-changes-to-a-repository.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - Repositories shortTitle: Using the activity view --- diff --git a/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md b/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md index c7e5a8db5966..96d2e0508d07 100644 --- a/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md +++ b/content/repositories/viewing-activity-and-data-for-your-repository/viewing-a-projects-contributors.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: View project contributors --- ## About contributors diff --git a/content/repositories/viewing-activity-and-data-for-your-repository/viewing-deployment-activity-for-your-repository.md b/content/repositories/viewing-activity-and-data-for-your-repository/viewing-deployment-activity-for-your-repository.md index 40a2a3626567..2a2df732721e 100644 --- a/content/repositories/viewing-activity-and-data-for-your-repository/viewing-deployment-activity-for-your-repository.md +++ b/content/repositories/viewing-activity-and-data-for-your-repository/viewing-deployment-activity-for-your-repository.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: View deployment activity --- diff --git a/content/repositories/viewing-activity-and-data-for-your-repository/viewing-traffic-to-a-repository.md b/content/repositories/viewing-activity-and-data-for-your-repository/viewing-traffic-to-a-repository.md index 243da2acfc7e..c17506431b2c 100644 --- a/content/repositories/viewing-activity-and-data-for-your-repository/viewing-traffic-to-a-repository.md +++ b/content/repositories/viewing-activity-and-data-for-your-repository/viewing-traffic-to-a-repository.md @@ -9,8 +9,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Repositories shortTitle: View repository traffic --- diff --git a/content/repositories/working-with-files/index.md b/content/repositories/working-with-files/index.md index a01794d23e59..730246e784c2 100644 --- a/content/repositories/working-with-files/index.md +++ b/content/repositories/working-with-files/index.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /managing-files - /using-files diff --git a/content/repositories/working-with-files/managing-files/adding-a-file-to-a-repository.md b/content/repositories/working-with-files/managing-files/adding-a-file-to-a-repository.md index 3a706893a3c3..eb772df1a947 100644 --- a/content/repositories/working-with-files/managing-files/adding-a-file-to-a-repository.md +++ b/content/repositories/working-with-files/managing-files/adding-a-file-to-a-repository.md @@ -14,8 +14,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Add a file --- diff --git a/content/repositories/working-with-files/managing-files/creating-new-files.md b/content/repositories/working-with-files/managing-files/creating-new-files.md index b3dfee1631aa..3ee93901bf8e 100644 --- a/content/repositories/working-with-files/managing-files/creating-new-files.md +++ b/content/repositories/working-with-files/managing-files/creating-new-files.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- When creating a file on {% data variables.product.github %}, consider the following: diff --git a/content/repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github.md b/content/repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github.md index 7ae932ca5a31..83e3d2ec729a 100644 --- a/content/repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github.md +++ b/content/repositories/working-with-files/managing-files/customizing-how-changed-files-appear-on-github.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: How changed files appear --- Use a _.gitattributes_ file to mark files that match a given "pattern" with the specified attributes. A _.gitattributes_ file uses the same rules for matching as _.gitignore_ files. For more information, see [PATTERN FORMAT](https://www.git-scm.com/docs/gitignore#_pattern_format) in the Git documentation. diff --git a/content/repositories/working-with-files/managing-files/deleting-files-in-a-repository.md b/content/repositories/working-with-files/managing-files/deleting-files-in-a-repository.md index f513068219a7..3de3e502b12f 100644 --- a/content/repositories/working-with-files/managing-files/deleting-files-in-a-repository.md +++ b/content/repositories/working-with-files/managing-files/deleting-files-in-a-repository.md @@ -12,8 +12,6 @@ versions: ghes: '*' ghec: '*' permissions: 'People with write permissions can delete files or directories in a repository.' -topics: - - Repositories shortTitle: Delete files --- ## About file and directory deletion diff --git a/content/repositories/working-with-files/managing-files/editing-files.md b/content/repositories/working-with-files/managing-files/editing-files.md index 9601cd38fbcc..d69d3e03c371 100644 --- a/content/repositories/working-with-files/managing-files/editing-files.md +++ b/content/repositories/working-with-files/managing-files/editing-files.md @@ -13,8 +13,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Edit files --- diff --git a/content/repositories/working-with-files/managing-files/index.md b/content/repositories/working-with-files/managing-files/index.md index 077a041aef1f..54a247f16d78 100644 --- a/content/repositories/working-with-files/managing-files/index.md +++ b/content/repositories/working-with-files/managing-files/index.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories children: - /creating-new-files - /adding-a-file-to-a-repository diff --git a/content/repositories/working-with-files/managing-files/moving-a-file-to-a-new-location.md b/content/repositories/working-with-files/managing-files/moving-a-file-to-a-new-location.md index d4ad351538b3..8da0dc2264b5 100644 --- a/content/repositories/working-with-files/managing-files/moving-a-file-to-a-new-location.md +++ b/content/repositories/working-with-files/managing-files/moving-a-file-to-a-new-location.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Move a file --- In addition to changing the file location, you can also [update the contents of your file](/repositories/working-with-files/managing-files/editing-files), or [give it a new name](/repositories/working-with-files/managing-files/renaming-a-file) in the same commit. diff --git a/content/repositories/working-with-files/managing-files/renaming-a-file.md b/content/repositories/working-with-files/managing-files/renaming-a-file.md index 41238823f446..06f6c0c6fa68 100644 --- a/content/repositories/working-with-files/managing-files/renaming-a-file.md +++ b/content/repositories/working-with-files/managing-files/renaming-a-file.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories --- ## Renaming a file on {% data variables.product.github %} diff --git a/content/repositories/working-with-files/using-files/downloading-source-code-archives.md b/content/repositories/working-with-files/using-files/downloading-source-code-archives.md index eb019cb677c1..663ab5f0b248 100644 --- a/content/repositories/working-with-files/using-files/downloading-source-code-archives.md +++ b/content/repositories/working-with-files/using-files/downloading-source-code-archives.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Source code archives --- ## Overview of source code archives diff --git a/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md b/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md index 415b89842715..da2e21609745 100644 --- a/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md +++ b/content/repositories/working-with-files/using-files/getting-permanent-links-to-files.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Permanent links to files --- diff --git a/content/repositories/working-with-files/using-files/navigating-code-on-github.md b/content/repositories/working-with-files/using-files/navigating-code-on-github.md index 9d3186f418e2..314f95a1b094 100644 --- a/content/repositories/working-with-files/using-files/navigating-code-on-github.md +++ b/content/repositories/working-with-files/using-files/navigating-code-on-github.md @@ -8,8 +8,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - Repositories --- diff --git a/content/repositories/working-with-files/using-files/viewing-and-understanding-files.md b/content/repositories/working-with-files/using-files/viewing-and-understanding-files.md index e62e214e3482..ab30847249bb 100644 --- a/content/repositories/working-with-files/using-files/viewing-and-understanding-files.md +++ b/content/repositories/working-with-files/using-files/viewing-and-understanding-files.md @@ -13,8 +13,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: View and understand files --- diff --git a/content/repositories/working-with-files/using-files/working-with-non-code-files.md b/content/repositories/working-with-files/using-files/working-with-non-code-files.md index f46a8702174b..24af54072edd 100644 --- a/content/repositories/working-with-files/using-files/working-with-non-code-files.md +++ b/content/repositories/working-with-files/using-files/working-with-non-code-files.md @@ -29,8 +29,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Repositories shortTitle: Working with non-code files --- diff --git a/content/rest/about-the-rest-api/about-the-openapi-description-for-the-rest-api.md b/content/rest/about-the-rest-api/about-the-openapi-description-for-the-rest-api.md index c551c6263cd3..11134465d5fd 100644 --- a/content/rest/about-the-rest-api/about-the-openapi-description-for-the-rest-api.md +++ b/content/rest/about-the-rest-api/about-the-openapi-description-for-the-rest-api.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API redirect_from: - /rest/overview/openapi-description - /rest/overview/about-the-openapi-description-for-the-rest-api diff --git a/content/rest/about-the-rest-api/about-the-rest-api.md b/content/rest/about-the-rest-api/about-the-rest-api.md index 96f840a4ba65..30ec6ce83a70 100644 --- a/content/rest/about-the-rest-api/about-the-rest-api.md +++ b/content/rest/about-the-rest-api/about-the-rest-api.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API redirect_from: - /rest/overview/about-the-rest-api --- diff --git a/content/rest/about-the-rest-api/comparing-githubs-rest-api-and-graphql-api.md b/content/rest/about-the-rest-api/comparing-githubs-rest-api-and-graphql-api.md index 1efab397e231..d1426e9bab00 100644 --- a/content/rest/about-the-rest-api/comparing-githubs-rest-api-and-graphql-api.md +++ b/content/rest/about-the-rest-api/comparing-githubs-rest-api-and-graphql-api.md @@ -13,8 +13,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API --- ## About {% data variables.product.company_short %}'s APIs diff --git a/content/rest/about-the-rest-api/index.md b/content/rest/about-the-rest-api/index.md index 1744f2df36e2..e7ed774c8e69 100644 --- a/content/rest/about-the-rest-api/index.md +++ b/content/rest/about-the-rest-api/index.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /about-the-rest-api - /comparing-githubs-rest-api-and-graphql-api diff --git a/content/rest/actions/artifacts.md b/content/rest/actions/artifacts.md index e92dca99f13a..7e43b76b9bea 100644 --- a/content/rest/actions/artifacts.md +++ b/content/rest/actions/artifacts.md @@ -5,8 +5,6 @@ shortTitle: Artifacts intro: >- Use the REST API to interact with artifacts in {% data variables.product.prodname_actions %}. -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/actions/cache.md b/content/rest/actions/cache.md index c29bce2489fb..6ee1553f45b8 100644 --- a/content/rest/actions/cache.md +++ b/content/rest/actions/cache.md @@ -5,8 +5,6 @@ shortTitle: Cache intro: >- Use the REST API to interact with the cache for repositories in {% data variables.product.prodname_actions %}. -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/actions/hosted-runners.md b/content/rest/actions/hosted-runners.md index cda1c6708a34..395233609bf2 100644 --- a/content/rest/actions/hosted-runners.md +++ b/content/rest/actions/hosted-runners.md @@ -5,8 +5,6 @@ intro: Use the REST API to interact with {% data variables.product.prodname_dotc versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/actions/index.md b/content/rest/actions/index.md index 53915d44d619..d7cc7ac3ce31 100644 --- a/content/rest/actions/index.md +++ b/content/rest/actions/index.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /artifacts - /cache diff --git a/content/rest/actions/oidc.md b/content/rest/actions/oidc.md index 3a47d0ece98e..a02145a3e49e 100644 --- a/content/rest/actions/oidc.md +++ b/content/rest/actions/oidc.md @@ -3,8 +3,6 @@ title: REST API endpoints for GitHub Actions OIDC allowTitleToDifferFromFilename: true shortTitle: OIDC intro: 'Use the REST API to interact with JWTs for OIDC subject claims in {% data variables.product.prodname_actions %}.' -topics: - - API versions: fpt: '*' ghec: '*' diff --git a/content/rest/actions/permissions.md b/content/rest/actions/permissions.md index dc664fd5c7ae..254f99c97e27 100644 --- a/content/rest/actions/permissions.md +++ b/content/rest/actions/permissions.md @@ -5,8 +5,6 @@ shortTitle: Permissions intro: >- Use the REST API to interact with permissions for {% data variables.product.prodname_actions %}. -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/actions/secrets.md b/content/rest/actions/secrets.md index 23ef911c9cb3..984311a83ed6 100644 --- a/content/rest/actions/secrets.md +++ b/content/rest/actions/secrets.md @@ -5,8 +5,6 @@ shortTitle: Secrets intro: >- Use the REST API to interact with secrets in {% data variables.product.prodname_actions %}. -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/actions/self-hosted-runner-groups.md b/content/rest/actions/self-hosted-runner-groups.md index 35b8d28ffe58..fcf215bf1d14 100644 --- a/content/rest/actions/self-hosted-runner-groups.md +++ b/content/rest/actions/self-hosted-runner-groups.md @@ -5,8 +5,6 @@ allowTitleToDifferFromFilename: true intro: >- Use the REST API to interact with self-hosted runner groups for {% data variables.product.prodname_actions %}. -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/actions/self-hosted-runners.md b/content/rest/actions/self-hosted-runners.md index 31cb548ecc6e..517c346ae770 100644 --- a/content/rest/actions/self-hosted-runners.md +++ b/content/rest/actions/self-hosted-runners.md @@ -5,8 +5,6 @@ allowTitleToDifferFromFilename: true intro: >- Use the REST API to interact with self-hosted runners in {% data variables.product.prodname_actions %}. -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/actions/variables.md b/content/rest/actions/variables.md index 1e277c5cd112..28b3a4e44b1d 100644 --- a/content/rest/actions/variables.md +++ b/content/rest/actions/variables.md @@ -3,8 +3,6 @@ title: REST API endpoints for GitHub Actions variables allowTitleToDifferFromFilename: true shortTitle: Variables intro: 'Use the REST API to interact with variables in {% data variables.product.prodname_actions %}.' -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/actions/workflow-jobs.md b/content/rest/actions/workflow-jobs.md index 981bd628543d..f18dcf064236 100644 --- a/content/rest/actions/workflow-jobs.md +++ b/content/rest/actions/workflow-jobs.md @@ -5,8 +5,6 @@ allowTitleToDifferFromFilename: true intro: >- Use the REST API to interact with workflow jobs in {% data variables.product.prodname_actions %}. -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/actions/workflow-runs.md b/content/rest/actions/workflow-runs.md index d6d01bcb05ab..6f3d8d6766bd 100644 --- a/content/rest/actions/workflow-runs.md +++ b/content/rest/actions/workflow-runs.md @@ -5,8 +5,6 @@ allowTitleToDifferFromFilename: true intro: >- Use the REST API to interact with workflow runs in {% data variables.product.prodname_actions %}. -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/actions/workflows.md b/content/rest/actions/workflows.md index a1a6943756bd..280c750858c6 100644 --- a/content/rest/actions/workflows.md +++ b/content/rest/actions/workflows.md @@ -5,8 +5,6 @@ allowTitleToDifferFromFilename: true intro: >- Use the REST API to interact with workflows in {% data variables.product.prodname_actions %}. -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/activity/events.md b/content/rest/activity/events.md index 30fe6fc5f389..30e28047ca9d 100644 --- a/content/rest/activity/events.md +++ b/content/rest/activity/events.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/activity/feeds.md b/content/rest/activity/feeds.md index c26433c33925..67fe15d87f66 100644 --- a/content/rest/activity/feeds.md +++ b/content/rest/activity/feeds.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/activity/index.md b/content/rest/activity/index.md index 67bab1dcf0e6..0af571a71696 100644 --- a/content/rest/activity/index.md +++ b/content/rest/activity/index.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /events - /feeds diff --git a/content/rest/activity/notifications.md b/content/rest/activity/notifications.md index a314b2a40a6f..0e960a77b4a6 100644 --- a/content/rest/activity/notifications.md +++ b/content/rest/activity/notifications.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/activity/starring.md b/content/rest/activity/starring.md index 33c13894d253..5104e332ceb8 100644 --- a/content/rest/activity/starring.md +++ b/content/rest/activity/starring.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/activity/watching.md b/content/rest/activity/watching.md index 4296fc5ea486..a2ce32cefdc1 100644 --- a/content/rest/activity/watching.md +++ b/content/rest/activity/watching.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/apps/apps.md b/content/rest/apps/apps.md index a7727c0d2cd6..f5bbf563df3d 100644 --- a/content/rest/apps/apps.md +++ b/content/rest/apps/apps.md @@ -5,8 +5,6 @@ allowTitleToDifferFromFilename: true intro: >- Use the REST API to interact with {% data variables.product.prodname_github_apps %} -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/apps/index.md b/content/rest/apps/index.md index d30e4ac70f26..df675ad6d308 100644 --- a/content/rest/apps/index.md +++ b/content/rest/apps/index.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /apps - /installations diff --git a/content/rest/apps/installations.md b/content/rest/apps/installations.md index cb93598059b1..35f4010c85dd 100644 --- a/content/rest/apps/installations.md +++ b/content/rest/apps/installations.md @@ -6,8 +6,6 @@ intro: >- Use the REST API to get information about {% data variables.product.prodname_github_app %} installations and perform actions within those installations. -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/apps/marketplace.md b/content/rest/apps/marketplace.md index c7c1887a768e..5dc784b349d2 100644 --- a/content/rest/apps/marketplace.md +++ b/content/rest/apps/marketplace.md @@ -5,8 +5,6 @@ shortTitle: Marketplace intro: >- Use the REST API to interact with {% data variables.product.prodname_marketplace %} -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/apps/oauth-applications.md b/content/rest/apps/oauth-applications.md index d71ce56ceda1..eab2cb1dabf9 100644 --- a/content/rest/apps/oauth-applications.md +++ b/content/rest/apps/oauth-applications.md @@ -6,8 +6,6 @@ intro: >- Use the REST API to interact with {% data variables.product.prodname_oauth_apps %} and OAuth authorizations of {% data variables.product.prodname_github_apps %} -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/apps/webhooks.md b/content/rest/apps/webhooks.md index 1b54e91af2f7..51faae956786 100644 --- a/content/rest/apps/webhooks.md +++ b/content/rest/apps/webhooks.md @@ -5,8 +5,6 @@ shortTitle: Webhooks intro: >- Use the REST API to interact with webhooks for {% data variables.product.prodname_oauth_apps %} -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/authentication/authenticating-to-the-rest-api.md b/content/rest/authentication/authenticating-to-the-rest-api.md index e0834f08ff57..8062f92fd342 100644 --- a/content/rest/authentication/authenticating-to-the-rest-api.md +++ b/content/rest/authentication/authenticating-to-the-rest-api.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API shortTitle: Authenticating --- diff --git a/content/rest/authentication/endpoints-available-for-github-app-installation-access-tokens.md b/content/rest/authentication/endpoints-available-for-github-app-installation-access-tokens.md index 47286b53922c..b474499eb814 100644 --- a/content/rest/authentication/endpoints-available-for-github-app-installation-access-tokens.md +++ b/content/rest/authentication/endpoints-available-for-github-app-installation-access-tokens.md @@ -12,9 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API - - GitHub Apps autogenerated: github-apps --- diff --git a/content/rest/authentication/endpoints-available-for-github-app-user-access-tokens.md b/content/rest/authentication/endpoints-available-for-github-app-user-access-tokens.md index 0cabed9a46f9..4075a642ed39 100644 --- a/content/rest/authentication/endpoints-available-for-github-app-user-access-tokens.md +++ b/content/rest/authentication/endpoints-available-for-github-app-user-access-tokens.md @@ -7,9 +7,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API - - GitHub Apps autogenerated: github-apps redirect_from: - /rest/overview/endpoints-available-for-github-app-user-access-tokens diff --git a/content/rest/authentication/index.md b/content/rest/authentication/index.md index 780222663103..d58c1fe532e5 100644 --- a/content/rest/authentication/index.md +++ b/content/rest/authentication/index.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /authenticating-to-the-rest-api - /keeping-your-api-credentials-secure diff --git a/content/rest/authentication/keeping-your-api-credentials-secure.md b/content/rest/authentication/keeping-your-api-credentials-secure.md index d906918c132c..19eca51cb82a 100644 --- a/content/rest/authentication/keeping-your-api-credentials-secure.md +++ b/content/rest/authentication/keeping-your-api-credentials-secure.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API redirect_from: - /rest/overview/keeping-your-api-credentials-secure --- diff --git a/content/rest/authentication/permissions-required-for-github-apps.md b/content/rest/authentication/permissions-required-for-github-apps.md index cfca662d3662..33a2b3290a66 100644 --- a/content/rest/authentication/permissions-required-for-github-apps.md +++ b/content/rest/authentication/permissions-required-for-github-apps.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API shortTitle: Permissions for GitHub Apps autogenerated: github-apps --- diff --git a/content/rest/billing/billing.md b/content/rest/billing/billing.md index 602b33cd7779..7335aec4f7c0 100644 --- a/content/rest/billing/billing.md +++ b/content/rest/billing/billing.md @@ -3,8 +3,6 @@ title: REST API endpoints for billing shortTitle: Billing allowTitleToDifferFromFilename: true intro: Use the REST API to get billing information. -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '*' diff --git a/content/rest/billing/budgets.md b/content/rest/billing/budgets.md index c5f345cafeae..43517c5946cf 100644 --- a/content/rest/billing/budgets.md +++ b/content/rest/billing/budgets.md @@ -4,8 +4,6 @@ intro: Use the REST API to get budget information. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest redirect_from: - /rest/billing/enhanced-billing diff --git a/content/rest/billing/cost-centers.md b/content/rest/billing/cost-centers.md index 8e49f282328c..cfc52166e9d1 100644 --- a/content/rest/billing/cost-centers.md +++ b/content/rest/billing/cost-centers.md @@ -3,8 +3,6 @@ title: Cost centers intro: Use the REST API to get cost center information. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/billing/index.md b/content/rest/billing/index.md index ee0fa6efb229..d4a929967ba7 100644 --- a/content/rest/billing/index.md +++ b/content/rest/billing/index.md @@ -3,8 +3,6 @@ title: REST API endpoints for billing shortTitle: Billing allowTitleToDifferFromFilename: true intro: Use the REST API to get billing information. -topics: - - API versions: fpt: '*' ghec: '*' diff --git a/content/rest/billing/usage-reports.md b/content/rest/billing/usage-reports.md index 611374c294c0..37e9462ea042 100644 --- a/content/rest/billing/usage-reports.md +++ b/content/rest/billing/usage-reports.md @@ -4,8 +4,6 @@ shortTitle: Usage reports intro: Use the REST API to create and retrieve usage report exports for an enterprise. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/billing/usage.md b/content/rest/billing/usage.md index 2386b7ea6f63..66558c9bf3a1 100644 --- a/content/rest/billing/usage.md +++ b/content/rest/billing/usage.md @@ -4,8 +4,6 @@ intro: Use the REST API to get billing usage information. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/branches/branch-protection.md b/content/rest/branches/branch-protection.md index 38cedfe6105c..faad5769bb56 100644 --- a/content/rest/branches/branch-protection.md +++ b/content/rest/branches/branch-protection.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/branches/branches.md b/content/rest/branches/branches.md index 47c6a34ac35e..ddded8e89714 100644 --- a/content/rest/branches/branches.md +++ b/content/rest/branches/branches.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/branches/index.md b/content/rest/branches/index.md index 7c2e5c037a3d..056c69bc3872 100644 --- a/content/rest/branches/index.md +++ b/content/rest/branches/index.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /branches - /branch-protection diff --git a/content/rest/campaigns/campaigns.md b/content/rest/campaigns/campaigns.md index 9b395457a3d9..7ce0dc1e027f 100644 --- a/content/rest/campaigns/campaigns.md +++ b/content/rest/campaigns/campaigns.md @@ -5,8 +5,6 @@ intro: Use the REST API to create and manage security campaigns for your organiz versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/campaigns/index.md b/content/rest/campaigns/index.md index cd4d74a2c9de..de536c6be2d5 100644 --- a/content/rest/campaigns/index.md +++ b/content/rest/campaigns/index.md @@ -2,8 +2,6 @@ title: REST API endpoints for security campaigns shortTitle: Campaigns intro: Use the REST API to create and manage security campaigns for your organization. -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true children: diff --git a/content/rest/checks/index.md b/content/rest/checks/index.md index ba985a0a55fb..e650f2cc2be1 100644 --- a/content/rest/checks/index.md +++ b/content/rest/checks/index.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /runs - /suites diff --git a/content/rest/checks/runs.md b/content/rest/checks/runs.md index 8dd5e220edbc..eb965be3a930 100644 --- a/content/rest/checks/runs.md +++ b/content/rest/checks/runs.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/checks/suites.md b/content/rest/checks/suites.md index 571a149aedef..87c2e1addddf 100644 --- a/content/rest/checks/suites.md +++ b/content/rest/checks/suites.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/classroom/classroom.md b/content/rest/classroom/classroom.md index 70054bc3486f..37baf9ea5b94 100644 --- a/content/rest/classroom/classroom.md +++ b/content/rest/classroom/classroom.md @@ -5,8 +5,6 @@ intro: 'Use the REST API to interact with {% data variables.product.prodname_cla versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/classroom/index.md b/content/rest/classroom/index.md index fc71fffca970..b486340f8c72 100644 --- a/content/rest/classroom/index.md +++ b/content/rest/classroom/index.md @@ -2,8 +2,6 @@ title: REST API endpoints for {% data variables.product.prodname_classroom %} shortTitle: Classroom intro: 'Use the REST API to interact with {% data variables.product.prodname_classroom %}.' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true children: diff --git a/content/rest/code-scanning/alert-dismissal-requests.md b/content/rest/code-scanning/alert-dismissal-requests.md index 5cc645d6b8e0..3f330bc1c237 100644 --- a/content/rest/code-scanning/alert-dismissal-requests.md +++ b/content/rest/code-scanning/alert-dismissal-requests.md @@ -10,8 +10,6 @@ intro: >- versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '>=3.19' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/code-scanning/code-scanning.md b/content/rest/code-scanning/code-scanning.md index 94ffcf154cee..619c537afc59 100644 --- a/content/rest/code-scanning/code-scanning.md +++ b/content/rest/code-scanning/code-scanning.md @@ -9,10 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API - - Code scanning - - REST redirect_from: - /rest/reference/code-scanning autogenerated: rest diff --git a/content/rest/code-scanning/index.md b/content/rest/code-scanning/index.md index 6d878af647e5..e80ddeefbd22 100644 --- a/content/rest/code-scanning/index.md +++ b/content/rest/code-scanning/index.md @@ -9,10 +9,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API - - Code scanning - - REST children: - /alert-dismissal-requests - /code-scanning diff --git a/content/rest/code-security/configurations.md b/content/rest/code-security/configurations.md index 9a70756b8ba0..c8e8935acac3 100644 --- a/content/rest/code-security/configurations.md +++ b/content/rest/code-security/configurations.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.15' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/code-security/index.md b/content/rest/code-security/index.md index 52ff759a642d..53a6398aac19 100644 --- a/content/rest/code-security/index.md +++ b/content/rest/code-security/index.md @@ -2,8 +2,6 @@ title: REST API endpoints for code security settings shortTitle: Code security settings intro: Use the REST API to create and manage code security configurations for your organization. -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true children: diff --git a/content/rest/codes-of-conduct/codes-of-conduct.md b/content/rest/codes-of-conduct/codes-of-conduct.md index 8f4aa0100f60..7d192c0d7668 100644 --- a/content/rest/codes-of-conduct/codes-of-conduct.md +++ b/content/rest/codes-of-conduct/codes-of-conduct.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API redirect_from: - /rest/reference/codes-of-conduct autogenerated: rest diff --git a/content/rest/codes-of-conduct/index.md b/content/rest/codes-of-conduct/index.md index 27fdbdb1cec2..3bf164f8bbbb 100644 --- a/content/rest/codes-of-conduct/index.md +++ b/content/rest/codes-of-conduct/index.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API children: - /codes-of-conduct autogenerated: rest diff --git a/content/rest/codespaces/codespaces.md b/content/rest/codespaces/codespaces.md index 9620affd31e9..d4d9253dc14b 100644 --- a/content/rest/codespaces/codespaces.md +++ b/content/rest/codespaces/codespaces.md @@ -8,8 +8,6 @@ intro: >- versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/codespaces/index.md b/content/rest/codespaces/index.md index 6f3b2cf6264e..c6392b3ace23 100644 --- a/content/rest/codespaces/index.md +++ b/content/rest/codespaces/index.md @@ -6,8 +6,6 @@ intro: 'Use the REST API to manage {% data variables.product.prodname_github_cod versions: fpt: '*' ghec: '*' -topics: - - API children: - /codespaces - /organizations diff --git a/content/rest/codespaces/machines.md b/content/rest/codespaces/machines.md index 6143805a4cb4..d93e7e729415 100644 --- a/content/rest/codespaces/machines.md +++ b/content/rest/codespaces/machines.md @@ -6,8 +6,6 @@ intro: Use the REST API to manage availability of machine types for a codespace. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/codespaces/organization-secrets.md b/content/rest/codespaces/organization-secrets.md index c4a0d875d96c..3254cd279d8b 100644 --- a/content/rest/codespaces/organization-secrets.md +++ b/content/rest/codespaces/organization-secrets.md @@ -8,8 +8,6 @@ intro: >- versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/codespaces/organizations.md b/content/rest/codespaces/organizations.md index a9b900220ee9..384432187257 100644 --- a/content/rest/codespaces/organizations.md +++ b/content/rest/codespaces/organizations.md @@ -6,8 +6,6 @@ intro: Use the REST API to manage your organization members codespaces. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/codespaces/repository-secrets.md b/content/rest/codespaces/repository-secrets.md index 1aea9bcc9ca3..0e1d629142e4 100644 --- a/content/rest/codespaces/repository-secrets.md +++ b/content/rest/codespaces/repository-secrets.md @@ -11,8 +11,6 @@ permissions: >- versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/codespaces/secrets.md b/content/rest/codespaces/secrets.md index 4632cda5fc9f..80c034f27d85 100644 --- a/content/rest/codespaces/secrets.md +++ b/content/rest/codespaces/secrets.md @@ -6,8 +6,6 @@ intro: Use the REST API manage secrets that the user has access to in a codespac versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/collaborators/collaborators.md b/content/rest/collaborators/collaborators.md index ddc86cb37591..52d83d80a304 100644 --- a/content/rest/collaborators/collaborators.md +++ b/content/rest/collaborators/collaborators.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/collaborators/index.md b/content/rest/collaborators/index.md index 1bf0ceab7f85..10667b6a0487 100644 --- a/content/rest/collaborators/index.md +++ b/content/rest/collaborators/index.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /collaborators - /invitations diff --git a/content/rest/collaborators/invitations.md b/content/rest/collaborators/invitations.md index fa1139395919..f55be730783c 100644 --- a/content/rest/collaborators/invitations.md +++ b/content/rest/collaborators/invitations.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/commits/comments.md b/content/rest/commits/comments.md index e119c90e795b..bc47949dbcca 100644 --- a/content/rest/commits/comments.md +++ b/content/rest/commits/comments.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/commits/commits.md b/content/rest/commits/commits.md index c9f6dd02b118..d01d4cc45b70 100644 --- a/content/rest/commits/commits.md +++ b/content/rest/commits/commits.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/commits/index.md b/content/rest/commits/index.md index 4515bda72717..0e60578123c0 100644 --- a/content/rest/commits/index.md +++ b/content/rest/commits/index.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /commits - /comments diff --git a/content/rest/commits/statuses.md b/content/rest/commits/statuses.md index 2aa2c017f5ef..5228dc790083 100644 --- a/content/rest/commits/statuses.md +++ b/content/rest/commits/statuses.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/copilot/copilot-content-exclusion-management.md b/content/rest/copilot/copilot-content-exclusion-management.md index ad5d3af89d19..4c4ff2c4172d 100644 --- a/content/rest/copilot/copilot-content-exclusion-management.md +++ b/content/rest/copilot/copilot-content-exclusion-management.md @@ -5,8 +5,6 @@ intro: 'Use the REST API to manage {% data variables.product.prodname_copilot_sh versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/copilot/copilot-custom-agents.md b/content/rest/copilot/copilot-custom-agents.md index 94efea67009f..ec0c94c47e47 100644 --- a/content/rest/copilot/copilot-custom-agents.md +++ b/content/rest/copilot/copilot-custom-agents.md @@ -4,8 +4,6 @@ shortTitle: Copilot custom agents intro: 'Use the REST API to manage {% data variables.copilot.copilot_custom_agents %} for your enterprise.' versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/copilot/copilot-metrics.md b/content/rest/copilot/copilot-metrics.md index 06460081d9d0..cfbf04f40e16 100644 --- a/content/rest/copilot/copilot-metrics.md +++ b/content/rest/copilot/copilot-metrics.md @@ -5,8 +5,6 @@ intro: Use the REST API to view {% data variables.product.prodname_copilot_short versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true redirect_from: diff --git a/content/rest/copilot/copilot-usage-metrics.md b/content/rest/copilot/copilot-usage-metrics.md index 4e6c695fd26f..f215daf74e5a 100644 --- a/content/rest/copilot/copilot-usage-metrics.md +++ b/content/rest/copilot/copilot-usage-metrics.md @@ -4,8 +4,6 @@ shortTitle: Copilot usage metrics intro: Use the REST API to view {% data variables.product.prodname_copilot_short %} usage metrics. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/copilot/copilot-user-management.md b/content/rest/copilot/copilot-user-management.md index 776f3fa347c9..19d6efdfd416 100644 --- a/content/rest/copilot/copilot-user-management.md +++ b/content/rest/copilot/copilot-user-management.md @@ -5,8 +5,6 @@ intro: 'Use the REST API to manage the {% data variables.copilot.copilot_for_bus versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true redirect_from: diff --git a/content/rest/copilot/index.md b/content/rest/copilot/index.md index 2816bc36e647..d47aca10245b 100644 --- a/content/rest/copilot/index.md +++ b/content/rest/copilot/index.md @@ -4,8 +4,6 @@ shortTitle: Copilot intro: >- Use the REST API to monitor and manage {% data variables.product.prodname_copilot %}. -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true children: diff --git a/content/rest/credentials/index.md b/content/rest/credentials/index.md index 1240a3ee4e79..1bae8150d832 100644 --- a/content/rest/credentials/index.md +++ b/content/rest/credentials/index.md @@ -1,7 +1,5 @@ --- title: Credentials -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true children: diff --git a/content/rest/credentials/revoke.md b/content/rest/credentials/revoke.md index a2ab674b6f79..0e01d06aa2b1 100644 --- a/content/rest/credentials/revoke.md +++ b/content/rest/credentials/revoke.md @@ -8,8 +8,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.18' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/dependabot/alert-dismissal-requests.md b/content/rest/dependabot/alert-dismissal-requests.md index 23d97a9c145c..24c61871da9b 100644 --- a/content/rest/dependabot/alert-dismissal-requests.md +++ b/content/rest/dependabot/alert-dismissal-requests.md @@ -5,8 +5,6 @@ intro: 'Use the REST API to manage {% data variables.product.prodname_dependabot versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '>=3.19' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/dependabot/alerts.md b/content/rest/dependabot/alerts.md index ae63e035cbee..b2f3cbde781b 100644 --- a/content/rest/dependabot/alerts.md +++ b/content/rest/dependabot/alerts.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/dependabot/index.md b/content/rest/dependabot/index.md index 74eb364ab0c1..42d1edf53281 100644 --- a/content/rest/dependabot/index.md +++ b/content/rest/dependabot/index.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /alert-dismissal-requests - /alerts diff --git a/content/rest/dependabot/repository-access.md b/content/rest/dependabot/repository-access.md index 9945a5e562fe..56fadde67d35 100644 --- a/content/rest/dependabot/repository-access.md +++ b/content/rest/dependabot/repository-access.md @@ -10,8 +10,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.18' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/dependabot/secrets.md b/content/rest/dependabot/secrets.md index 41ebc609f242..98cb8d46eb75 100644 --- a/content/rest/dependabot/secrets.md +++ b/content/rest/dependabot/secrets.md @@ -4,8 +4,6 @@ shortTitle: Secrets intro: >- Use the REST API to manage {% data variables.product.prodname_dependabot %} secrets for an organization or repository. -topics: - - API versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' diff --git a/content/rest/dependency-graph/dependency-review.md b/content/rest/dependency-graph/dependency-review.md index e07854007286..cc1c2ab023d5 100644 --- a/content/rest/dependency-graph/dependency-review.md +++ b/content/rest/dependency-graph/dependency-review.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/dependency-graph/index.md b/content/rest/dependency-graph/index.md index 20c0366346bc..ec5acf2d48ec 100644 --- a/content/rest/dependency-graph/index.md +++ b/content/rest/dependency-graph/index.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /dependency-review - /dependency-submission diff --git a/content/rest/dependency-graph/sboms.md b/content/rest/dependency-graph/sboms.md index b832e6c2716b..cd5bae4049fb 100644 --- a/content/rest/dependency-graph/sboms.md +++ b/content/rest/dependency-graph/sboms.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/deploy-keys/deploy-keys.md b/content/rest/deploy-keys/deploy-keys.md index 46750fff2eab..dedffa134525 100644 --- a/content/rest/deploy-keys/deploy-keys.md +++ b/content/rest/deploy-keys/deploy-keys.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true redirect_from: - /rest/reference/deploy_keys diff --git a/content/rest/deploy-keys/index.md b/content/rest/deploy-keys/index.md index 7f3e11ae103d..affcabfe3139 100644 --- a/content/rest/deploy-keys/index.md +++ b/content/rest/deploy-keys/index.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true children: - /deploy-keys diff --git a/content/rest/deployments/branch-policies.md b/content/rest/deployments/branch-policies.md index 0bdb6342b438..ed920d2528d9 100644 --- a/content/rest/deployments/branch-policies.md +++ b/content/rest/deployments/branch-policies.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/deployments/deployments.md b/content/rest/deployments/deployments.md index 3db57c13928c..7801df66aada 100644 --- a/content/rest/deployments/deployments.md +++ b/content/rest/deployments/deployments.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/deployments/environments.md b/content/rest/deployments/environments.md index f55853890403..342b107ea790 100644 --- a/content/rest/deployments/environments.md +++ b/content/rest/deployments/environments.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/deployments/index.md b/content/rest/deployments/index.md index d2663d7d2b3b..728889000e31 100644 --- a/content/rest/deployments/index.md +++ b/content/rest/deployments/index.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /branch-policies - /deployments diff --git a/content/rest/deployments/protection-rules.md b/content/rest/deployments/protection-rules.md index 89f073a20daf..ead072aa66b4 100644 --- a/content/rest/deployments/protection-rules.md +++ b/content/rest/deployments/protection-rules.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/deployments/statuses.md b/content/rest/deployments/statuses.md index 324344163439..d0a276050583 100644 --- a/content/rest/deployments/statuses.md +++ b/content/rest/deployments/statuses.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/emojis/emojis.md b/content/rest/emojis/emojis.md index a2de2da396fb..70e0bfad498a 100644 --- a/content/rest/emojis/emojis.md +++ b/content/rest/emojis/emojis.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API redirect_from: - /rest/reference/emojis autogenerated: rest diff --git a/content/rest/emojis/index.md b/content/rest/emojis/index.md index 33ced7e58736..d206b420a1dc 100644 --- a/content/rest/emojis/index.md +++ b/content/rest/emojis/index.md @@ -8,8 +8,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API children: - /emojis autogenerated: rest diff --git a/content/rest/enterprise-admin/admin-stats.md b/content/rest/enterprise-admin/admin-stats.md index 693a5de3d888..985b0b707df6 100644 --- a/content/rest/enterprise-admin/admin-stats.md +++ b/content/rest/enterprise-admin/admin-stats.md @@ -6,8 +6,6 @@ intro: Use the REST API to retrieve a variety of metrics about your installation versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/enterprise-admin/announcement.md b/content/rest/enterprise-admin/announcement.md index f49c8431d9a6..9444c656ae56 100644 --- a/content/rest/enterprise-admin/announcement.md +++ b/content/rest/enterprise-admin/announcement.md @@ -5,8 +5,6 @@ allowTitleToDifferFromFilename: true intro: Use the REST API to manage the global announcement banner in your enterprise. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/enterprise-admin/audit-log.md b/content/rest/enterprise-admin/audit-log.md index 779cad93cf27..fec63a1a6d4e 100644 --- a/content/rest/enterprise-admin/audit-log.md +++ b/content/rest/enterprise-admin/audit-log.md @@ -6,8 +6,6 @@ intro: Use the REST API to retrieve audit logs for an enterprise. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/enterprise-admin/bypass-requests.md b/content/rest/enterprise-admin/bypass-requests.md index 1990401df9e6..93269e454c21 100644 --- a/content/rest/enterprise-admin/bypass-requests.md +++ b/content/rest/enterprise-admin/bypass-requests.md @@ -5,8 +5,6 @@ intro: Use the REST API to manage enterprise push rule bypass requests. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '>=3.19' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/enterprise-admin/code-security-and-analysis.md b/content/rest/enterprise-admin/code-security-and-analysis.md index d50a43bc8c30..c571a120c5be 100644 --- a/content/rest/enterprise-admin/code-security-and-analysis.md +++ b/content/rest/enterprise-admin/code-security-and-analysis.md @@ -6,8 +6,6 @@ intro: Use the REST API to manage use of security features for your enterprise. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/enterprise-admin/custom-properties-for-orgs.md b/content/rest/enterprise-admin/custom-properties-for-orgs.md index ffeaae837e8f..53c7078de3e2 100644 --- a/content/rest/enterprise-admin/custom-properties-for-orgs.md +++ b/content/rest/enterprise-admin/custom-properties-for-orgs.md @@ -4,8 +4,6 @@ shortTitle: Custom properties for organizations intro: 'Use the REST API to manage custom properties for organizations belonging to an enterprise' versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/enterprise-admin/custom-properties.md b/content/rest/enterprise-admin/custom-properties.md index 84deab0df2b2..d0351ed28c9e 100644 --- a/content/rest/enterprise-admin/custom-properties.md +++ b/content/rest/enterprise-admin/custom-properties.md @@ -5,8 +5,6 @@ intro: Use the REST API to manage custom properties for your enterprise. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '>=3.18' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/enterprise-admin/enterprise-roles.md b/content/rest/enterprise-admin/enterprise-roles.md index e7806cd6a559..b03cd7a6b7da 100644 --- a/content/rest/enterprise-admin/enterprise-roles.md +++ b/content/rest/enterprise-admin/enterprise-roles.md @@ -4,8 +4,6 @@ shortTitle: Enterprise roles intro: 'Use the REST API to manage the enterprise roles available in this enterprise' versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/enterprise-admin/enterprises.md b/content/rest/enterprise-admin/enterprises.md index 2228f55657ff..bfea44350541 100644 --- a/content/rest/enterprise-admin/enterprises.md +++ b/content/rest/enterprise-admin/enterprises.md @@ -4,8 +4,6 @@ shortTitle: Enterprise access verification intro: 'Use the REST API to manage enterprise access verification configuration in your {% data variables.product.github %} enterprise.' versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/enterprise-admin/global-webhooks.md b/content/rest/enterprise-admin/global-webhooks.md index 46f0e1b951d3..415953c72cac 100644 --- a/content/rest/enterprise-admin/global-webhooks.md +++ b/content/rest/enterprise-admin/global-webhooks.md @@ -5,8 +5,6 @@ allowTitleToDifferFromFilename: true intro: Use the REST API to manage global webhooks for your enterprise. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/enterprise-admin/index.md b/content/rest/enterprise-admin/index.md index 9e5ed49e3452..02a194f2870a 100644 --- a/content/rest/enterprise-admin/index.md +++ b/content/rest/enterprise-admin/index.md @@ -9,8 +9,6 @@ redirect_from: versions: ghes: '*' ghec: '*' -topics: - - API shortTitle: Enterprise administration children: - /admin-stats diff --git a/content/rest/enterprise-admin/ldap.md b/content/rest/enterprise-admin/ldap.md index da003accee2b..1a3706ca3fb1 100644 --- a/content/rest/enterprise-admin/ldap.md +++ b/content/rest/enterprise-admin/ldap.md @@ -7,8 +7,6 @@ intro: >- queue a new synchronization. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/enterprise-admin/licensing.md b/content/rest/enterprise-admin/licensing.md index 4729163f5717..7a6af5f0109f 100644 --- a/content/rest/enterprise-admin/licensing.md +++ b/content/rest/enterprise-admin/licensing.md @@ -4,8 +4,6 @@ intro: Use the REST API to get licensing information. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '*' -topics: - - API autogenerated: rest redirect_from: - /rest/enterprise-admin/license diff --git a/content/rest/enterprise-admin/manage-ghes.md b/content/rest/enterprise-admin/manage-ghes.md index db691cbbbe74..df1d4aedd079 100644 --- a/content/rest/enterprise-admin/manage-ghes.md +++ b/content/rest/enterprise-admin/manage-ghes.md @@ -7,8 +7,6 @@ intro: >- instance. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/enterprise-admin/management-console.md b/content/rest/enterprise-admin/management-console.md index ff72bcc619fd..e9c46ba2cdfd 100644 --- a/content/rest/enterprise-admin/management-console.md +++ b/content/rest/enterprise-admin/management-console.md @@ -7,8 +7,6 @@ intro: >- installation. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: <=3.14 -topics: - - API autogenerated: rest --- diff --git a/content/rest/enterprise-admin/network-configurations.md b/content/rest/enterprise-admin/network-configurations.md index ef9ad6050143..fa8342a614d9 100644 --- a/content/rest/enterprise-admin/network-configurations.md +++ b/content/rest/enterprise-admin/network-configurations.md @@ -4,8 +4,6 @@ shortTitle: Network configurations intro: Use the REST API to interact with enterprise network configurations. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/enterprise-admin/org-pre-receive-hooks.md b/content/rest/enterprise-admin/org-pre-receive-hooks.md index df3cf54acba6..95063c6a07c3 100644 --- a/content/rest/enterprise-admin/org-pre-receive-hooks.md +++ b/content/rest/enterprise-admin/org-pre-receive-hooks.md @@ -6,8 +6,6 @@ intro: >- are available to an organization. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/enterprise-admin/organization-installations.md b/content/rest/enterprise-admin/organization-installations.md index e5a6e2063d7d..10fcdeef3dc0 100644 --- a/content/rest/enterprise-admin/organization-installations.md +++ b/content/rest/enterprise-admin/organization-installations.md @@ -8,8 +8,6 @@ intro: >- versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '>=3.19' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/enterprise-admin/orgs.md b/content/rest/enterprise-admin/orgs.md index 4219bffefce5..cc8285ba12c1 100644 --- a/content/rest/enterprise-admin/orgs.md +++ b/content/rest/enterprise-admin/orgs.md @@ -4,8 +4,6 @@ shortTitle: Organizations intro: Use the REST API to create organizations on your enterprise. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/enterprise-admin/pre-receive-environments.md b/content/rest/enterprise-admin/pre-receive-environments.md index 234581ad55bd..480a1f8b2a1a 100644 --- a/content/rest/enterprise-admin/pre-receive-environments.md +++ b/content/rest/enterprise-admin/pre-receive-environments.md @@ -7,8 +7,6 @@ intro: >- pre-receive hooks. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/enterprise-admin/pre-receive-hooks.md b/content/rest/enterprise-admin/pre-receive-hooks.md index 208f12313baa..ec98861b04a8 100644 --- a/content/rest/enterprise-admin/pre-receive-hooks.md +++ b/content/rest/enterprise-admin/pre-receive-hooks.md @@ -5,8 +5,6 @@ allowTitleToDifferFromFilename: true intro: 'Use the REST API to create, list, update and delete pre-receive hooks.' versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/enterprise-admin/repo-pre-receive-hooks.md b/content/rest/enterprise-admin/repo-pre-receive-hooks.md index bf46ed7b72a5..1eaab029d002 100644 --- a/content/rest/enterprise-admin/repo-pre-receive-hooks.md +++ b/content/rest/enterprise-admin/repo-pre-receive-hooks.md @@ -6,8 +6,6 @@ intro: >- are available to a repository. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/enterprise-admin/rules.md b/content/rest/enterprise-admin/rules.md index 801787f01018..4faa3b6410b8 100644 --- a/content/rest/enterprise-admin/rules.md +++ b/content/rest/enterprise-admin/rules.md @@ -7,8 +7,6 @@ intro: >- versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '>=3.19' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/enterprise-admin/scim.md b/content/rest/enterprise-admin/scim.md index 4b8618468782..995501a26d5c 100644 --- a/content/rest/enterprise-admin/scim.md +++ b/content/rest/enterprise-admin/scim.md @@ -6,8 +6,6 @@ intro: Use the REST API to automate user creation and team memberships with SCIM versions: ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/enterprise-admin/users.md b/content/rest/enterprise-admin/users.md index ee8084133faa..bdd74182b608 100644 --- a/content/rest/enterprise-admin/users.md +++ b/content/rest/enterprise-admin/users.md @@ -7,8 +7,6 @@ intro: >- demote users on your enterprise. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/enterprise-teams/enterprise-team-members.md b/content/rest/enterprise-teams/enterprise-team-members.md index 59f681cfbf69..b66ce093acee 100644 --- a/content/rest/enterprise-teams/enterprise-team-members.md +++ b/content/rest/enterprise-teams/enterprise-team-members.md @@ -8,8 +8,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.20' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/enterprise-teams/enterprise-team-organizations.md b/content/rest/enterprise-teams/enterprise-team-organizations.md index 55c87aedfe75..993da2986df4 100644 --- a/content/rest/enterprise-teams/enterprise-team-organizations.md +++ b/content/rest/enterprise-teams/enterprise-team-organizations.md @@ -8,8 +8,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.20' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/enterprise-teams/enterprise-teams.md b/content/rest/enterprise-teams/enterprise-teams.md index 9fdf920e4b3b..282b50956c51 100644 --- a/content/rest/enterprise-teams/enterprise-teams.md +++ b/content/rest/enterprise-teams/enterprise-teams.md @@ -8,8 +8,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.20' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/enterprise-teams/index.md b/content/rest/enterprise-teams/index.md index cd980ba706a3..654fdbf6a8fc 100644 --- a/content/rest/enterprise-teams/index.md +++ b/content/rest/enterprise-teams/index.md @@ -1,7 +1,5 @@ --- title: Enterprise teams -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true intro: >- diff --git a/content/rest/gists/comments.md b/content/rest/gists/comments.md index e12070fa4ebc..e131ae510dfa 100644 --- a/content/rest/gists/comments.md +++ b/content/rest/gists/comments.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/gists/gists.md b/content/rest/gists/gists.md index 0354bd926406..d58b298be9c7 100644 --- a/content/rest/gists/gists.md +++ b/content/rest/gists/gists.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/gists/index.md b/content/rest/gists/index.md index ea142d7919b9..b2755af53567 100644 --- a/content/rest/gists/index.md +++ b/content/rest/gists/index.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /gists - /comments diff --git a/content/rest/git/blobs.md b/content/rest/git/blobs.md index 7a6d1f9e2b04..07463e62c8e7 100644 --- a/content/rest/git/blobs.md +++ b/content/rest/git/blobs.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/git/commits.md b/content/rest/git/commits.md index fdf483d4dab0..02a4c8cd9571 100644 --- a/content/rest/git/commits.md +++ b/content/rest/git/commits.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/git/index.md b/content/rest/git/index.md index 68c0370f8b5d..4a49afcaa93d 100644 --- a/content/rest/git/index.md +++ b/content/rest/git/index.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /blobs - /commits diff --git a/content/rest/git/refs.md b/content/rest/git/refs.md index 0f597f6bf88e..6fd1924629c2 100644 --- a/content/rest/git/refs.md +++ b/content/rest/git/refs.md @@ -8,8 +8,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/git/tags.md b/content/rest/git/tags.md index b1bd5c992683..63d3cc7ae751 100644 --- a/content/rest/git/tags.md +++ b/content/rest/git/tags.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/git/trees.md b/content/rest/git/trees.md index 354eb7f1f857..7fa0716865c5 100644 --- a/content/rest/git/trees.md +++ b/content/rest/git/trees.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/gitignore/gitignore.md b/content/rest/gitignore/gitignore.md index 0cdbb8a3e19a..6d92f5d6bc18 100644 --- a/content/rest/gitignore/gitignore.md +++ b/content/rest/gitignore/gitignore.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API redirect_from: - /rest/reference/gitignore autogenerated: rest diff --git a/content/rest/gitignore/index.md b/content/rest/gitignore/index.md index 1494aabcc58e..9a26d7d5895c 100644 --- a/content/rest/gitignore/index.md +++ b/content/rest/gitignore/index.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API children: - /gitignore autogenerated: rest diff --git a/content/rest/guides/building-a-ci-server.md b/content/rest/guides/building-a-ci-server.md index cb5460a6456c..25d148c4aa82 100644 --- a/content/rest/guides/building-a-ci-server.md +++ b/content/rest/guides/building-a-ci-server.md @@ -8,8 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API --- diff --git a/content/rest/guides/delivering-deployments.md b/content/rest/guides/delivering-deployments.md index dda22a49ef45..5fadf4973616 100644 --- a/content/rest/guides/delivering-deployments.md +++ b/content/rest/guides/delivering-deployments.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API --- diff --git a/content/rest/guides/discovering-resources-for-a-user.md b/content/rest/guides/discovering-resources-for-a-user.md index af0e17fc6283..3684cd0bcb23 100644 --- a/content/rest/guides/discovering-resources-for-a-user.md +++ b/content/rest/guides/discovering-resources-for-a-user.md @@ -8,8 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API shortTitle: Discover resources for a user --- diff --git a/content/rest/guides/encrypting-secrets-for-the-rest-api.md b/content/rest/guides/encrypting-secrets-for-the-rest-api.md index 0ad1dbc4b05f..c93e2b682274 100644 --- a/content/rest/guides/encrypting-secrets-for-the-rest-api.md +++ b/content/rest/guides/encrypting-secrets-for-the-rest-api.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API shortTitle: Encrypt secrets --- diff --git a/content/rest/guides/index.md b/content/rest/guides/index.md index 3612fc15bf10..82284553daa9 100644 --- a/content/rest/guides/index.md +++ b/content/rest/guides/index.md @@ -8,8 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /scripting-with-the-rest-api-and-javascript - /scripting-with-the-rest-api-and-ruby diff --git a/content/rest/guides/rendering-data-as-graphs.md b/content/rest/guides/rendering-data-as-graphs.md index 3ebd3a6e6946..93ff3d396f65 100644 --- a/content/rest/guides/rendering-data-as-graphs.md +++ b/content/rest/guides/rendering-data-as-graphs.md @@ -8,8 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API --- diff --git a/content/rest/guides/scripting-with-the-rest-api-and-javascript.md b/content/rest/guides/scripting-with-the-rest-api-and-javascript.md index 711dd0e96280..060935cf664e 100644 --- a/content/rest/guides/scripting-with-the-rest-api-and-javascript.md +++ b/content/rest/guides/scripting-with-the-rest-api-and-javascript.md @@ -6,9 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API - - JavaScript type: tutorial --- diff --git a/content/rest/guides/scripting-with-the-rest-api-and-ruby.md b/content/rest/guides/scripting-with-the-rest-api-and-ruby.md index facd1ff6388e..112a5a6045fc 100644 --- a/content/rest/guides/scripting-with-the-rest-api-and-ruby.md +++ b/content/rest/guides/scripting-with-the-rest-api-and-ruby.md @@ -6,9 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: -- API -- Ruby type: tutorial --- diff --git a/content/rest/guides/using-the-rest-api-to-interact-with-checks.md b/content/rest/guides/using-the-rest-api-to-interact-with-checks.md index 5f6b192f8e66..d01f3e75af55 100644 --- a/content/rest/guides/using-the-rest-api-to-interact-with-checks.md +++ b/content/rest/guides/using-the-rest-api-to-interact-with-checks.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API shortTitle: Get started - Checks redirect_from: - /rest/guides/getting-started-with-the-checks-api diff --git a/content/rest/guides/using-the-rest-api-to-interact-with-your-git-database.md b/content/rest/guides/using-the-rest-api-to-interact-with-your-git-database.md index 7e48672c6ac8..bff6997cfc63 100644 --- a/content/rest/guides/using-the-rest-api-to-interact-with-your-git-database.md +++ b/content/rest/guides/using-the-rest-api-to-interact-with-your-git-database.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API shortTitle: Get started - Git database redirect_from: - /rest/guides/getting-started-with-the-git-database-api diff --git a/content/rest/guides/working-with-comments.md b/content/rest/guides/working-with-comments.md index 0c86129cae4a..2ead08ad7ee9 100644 --- a/content/rest/guides/working-with-comments.md +++ b/content/rest/guides/working-with-comments.md @@ -8,8 +8,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API --- diff --git a/content/rest/interactions/index.md b/content/rest/interactions/index.md index 59fb7e9e5073..72e77211cc8c 100644 --- a/content/rest/interactions/index.md +++ b/content/rest/interactions/index.md @@ -10,8 +10,6 @@ redirect_from: versions: fpt: '*' ghec: '*' -topics: - - API children: - /orgs - /repos diff --git a/content/rest/interactions/orgs.md b/content/rest/interactions/orgs.md index 192a79885786..0e9700f44e25 100644 --- a/content/rest/interactions/orgs.md +++ b/content/rest/interactions/orgs.md @@ -7,8 +7,6 @@ intro: >- versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/interactions/repos.md b/content/rest/interactions/repos.md index cb31e29636c3..4c788d1c7ebe 100644 --- a/content/rest/interactions/repos.md +++ b/content/rest/interactions/repos.md @@ -10,8 +10,6 @@ permissions: >- versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/interactions/user.md b/content/rest/interactions/user.md index 867e26411015..5bc2b3760a79 100644 --- a/content/rest/interactions/user.md +++ b/content/rest/interactions/user.md @@ -8,8 +8,6 @@ intro: >- versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/issues/assignees.md b/content/rest/issues/assignees.md index 6508f529c4b9..263fa94ae9f3 100644 --- a/content/rest/issues/assignees.md +++ b/content/rest/issues/assignees.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/issues/comments.md b/content/rest/issues/comments.md index 24d792bc707b..442079348bc0 100644 --- a/content/rest/issues/comments.md +++ b/content/rest/issues/comments.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/issues/events.md b/content/rest/issues/events.md index 27c8996ded47..eaad426db336 100644 --- a/content/rest/issues/events.md +++ b/content/rest/issues/events.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/issues/index.md b/content/rest/issues/index.md index 355525ce0641..8b5d1a5f4654 100644 --- a/content/rest/issues/index.md +++ b/content/rest/issues/index.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /assignees - /comments diff --git a/content/rest/issues/issue-dependencies.md b/content/rest/issues/issue-dependencies.md index 0eb76f1cfca7..4329911ab24c 100644 --- a/content/rest/issues/issue-dependencies.md +++ b/content/rest/issues/issue-dependencies.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.19' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/issues/issues.md b/content/rest/issues/issues.md index d77d7787c0e5..c53f66f207e7 100644 --- a/content/rest/issues/issues.md +++ b/content/rest/issues/issues.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/issues/labels.md b/content/rest/issues/labels.md index 0c813bc40473..3ead08452c4d 100644 --- a/content/rest/issues/labels.md +++ b/content/rest/issues/labels.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/issues/milestones.md b/content/rest/issues/milestones.md index 7121e8d64391..f2a92de2c6a4 100644 --- a/content/rest/issues/milestones.md +++ b/content/rest/issues/milestones.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/issues/sub-issues.md b/content/rest/issues/sub-issues.md index f7d9de205c0f..767c725d655c 100644 --- a/content/rest/issues/sub-issues.md +++ b/content/rest/issues/sub-issues.md @@ -5,8 +5,6 @@ intro: Use the REST API to view, add, remove, and reprioritize sub-issues. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/issues/timeline.md b/content/rest/issues/timeline.md index d92d167d02cc..d79a57147292 100644 --- a/content/rest/issues/timeline.md +++ b/content/rest/issues/timeline.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/licenses/index.md b/content/rest/licenses/index.md index 6f73b626eafd..cdcf48e00cf3 100644 --- a/content/rest/licenses/index.md +++ b/content/rest/licenses/index.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API children: - /licenses autogenerated: rest diff --git a/content/rest/licenses/licenses.md b/content/rest/licenses/licenses.md index 94b5d9036ba8..a0740006bff1 100644 --- a/content/rest/licenses/licenses.md +++ b/content/rest/licenses/licenses.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API redirect_from: - /rest/reference/licenses autogenerated: rest diff --git a/content/rest/markdown/index.md b/content/rest/markdown/index.md index 31db1ba44250..50f59b204864 100644 --- a/content/rest/markdown/index.md +++ b/content/rest/markdown/index.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API children: - /markdown autogenerated: rest diff --git a/content/rest/markdown/markdown.md b/content/rest/markdown/markdown.md index e59be64e25a2..910350bc4832 100644 --- a/content/rest/markdown/markdown.md +++ b/content/rest/markdown/markdown.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API redirect_from: - /rest/reference/markdown autogenerated: rest diff --git a/content/rest/meta/index.md b/content/rest/meta/index.md index f53ab941d06a..b181d1875cff 100644 --- a/content/rest/meta/index.md +++ b/content/rest/meta/index.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API children: - /meta autogenerated: rest diff --git a/content/rest/meta/meta.md b/content/rest/meta/meta.md index 0dfb1d018f57..f38ec5b38a27 100644 --- a/content/rest/meta/meta.md +++ b/content/rest/meta/meta.md @@ -10,8 +10,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API redirect_from: - /rest/reference/meta autogenerated: rest diff --git a/content/rest/metrics/community.md b/content/rest/metrics/community.md index 0e677680f125..42e830df36a6 100644 --- a/content/rest/metrics/community.md +++ b/content/rest/metrics/community.md @@ -6,8 +6,6 @@ intro: Use the REST API to retrieve information about your community profile. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/metrics/index.md b/content/rest/metrics/index.md index bd8be376c8f0..0830f0599343 100644 --- a/content/rest/metrics/index.md +++ b/content/rest/metrics/index.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /community - /statistics diff --git a/content/rest/metrics/statistics.md b/content/rest/metrics/statistics.md index 88fdbb0b48ed..40248d86cc2d 100644 --- a/content/rest/metrics/statistics.md +++ b/content/rest/metrics/statistics.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/metrics/traffic.md b/content/rest/metrics/traffic.md index 774491581886..8d0f86cfda50 100644 --- a/content/rest/metrics/traffic.md +++ b/content/rest/metrics/traffic.md @@ -6,8 +6,6 @@ intro: Use the REST API to retrieve information provided in your repository grap versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/migrations/index.md b/content/rest/migrations/index.md index ec95ab03dcfb..d910a7a4b8af 100644 --- a/content/rest/migrations/index.md +++ b/content/rest/migrations/index.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API children: - /orgs - /source-imports diff --git a/content/rest/migrations/orgs.md b/content/rest/migrations/orgs.md index 5184e82ca95e..03ab24d9e121 100644 --- a/content/rest/migrations/orgs.md +++ b/content/rest/migrations/orgs.md @@ -11,8 +11,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/migrations/source-imports.md b/content/rest/migrations/source-imports.md index 288c978ae83f..738fbe737a64 100644 --- a/content/rest/migrations/source-imports.md +++ b/content/rest/migrations/source-imports.md @@ -7,8 +7,6 @@ intro: >- versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/migrations/users.md b/content/rest/migrations/users.md index 99093ee1aa2b..19977ce606f2 100644 --- a/content/rest/migrations/users.md +++ b/content/rest/migrations/users.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/models/catalog.md b/content/rest/models/catalog.md index 55ae0944c7ae..fafc4564eb6a 100644 --- a/content/rest/models/catalog.md +++ b/content/rest/models/catalog.md @@ -4,8 +4,6 @@ shortTitle: Catalog intro: Use the REST API to get a list of models available for use, including details like ID, supported input/output modalities, and rate limits. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/models/embeddings.md b/content/rest/models/embeddings.md index 33749ba6a87b..77be09752fd1 100644 --- a/content/rest/models/embeddings.md +++ b/content/rest/models/embeddings.md @@ -4,8 +4,6 @@ shortTitle: Embeddings intro: Use the REST API to work with embedding requests for models. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/models/index.md b/content/rest/models/index.md index 962ba13228ce..83f6bf3cc005 100644 --- a/content/rest/models/index.md +++ b/content/rest/models/index.md @@ -1,7 +1,5 @@ --- title: Models -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true children: diff --git a/content/rest/models/inference.md b/content/rest/models/inference.md index 26b1af8d5672..633c7eeb3da9 100644 --- a/content/rest/models/inference.md +++ b/content/rest/models/inference.md @@ -4,8 +4,6 @@ shortTitle: Inference intro: Use the REST API to submit a chat completion request to a specified model, with or without organizational attribution. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/oauth-authorizations/index.md b/content/rest/oauth-authorizations/index.md index 1ff5bf2b1e46..792d4219eb1b 100644 --- a/content/rest/oauth-authorizations/index.md +++ b/content/rest/oauth-authorizations/index.md @@ -5,8 +5,6 @@ allowTitleToDifferFromFilename: true intro: Use the REST API to manage the access {% data variables.product.prodname_oauth_apps %} have to your account. versions: ghes: '*' -topics: - - API children: - /oauth-authorizations autogenerated: rest diff --git a/content/rest/oauth-authorizations/oauth-authorizations.md b/content/rest/oauth-authorizations/oauth-authorizations.md index 4ac16401fe47..437884df6c7f 100644 --- a/content/rest/oauth-authorizations/oauth-authorizations.md +++ b/content/rest/oauth-authorizations/oauth-authorizations.md @@ -7,8 +7,6 @@ intro: >- variables.product.prodname_oauth_apps %} have to your account. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: '*' -topics: - - API redirect_from: - /rest/reference/oauth-authorizations autogenerated: rest diff --git a/content/rest/orgs/api-insights.md b/content/rest/orgs/api-insights.md index 94f447f4f832..960751d5cdf3 100644 --- a/content/rest/orgs/api-insights.md +++ b/content/rest/orgs/api-insights.md @@ -5,8 +5,6 @@ intro: Use the REST API to view statistics for API usage in an organization. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/orgs/artifact-metadata.md b/content/rest/orgs/artifact-metadata.md index cd3d7533bd70..7583e4161065 100644 --- a/content/rest/orgs/artifact-metadata.md +++ b/content/rest/orgs/artifact-metadata.md @@ -5,8 +5,6 @@ intro: "Use these endpoints to retrieve and manage metadata for artifacts in you versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/orgs/attestations.md b/content/rest/orgs/attestations.md index 183254551faf..5cd87ce375e5 100644 --- a/content/rest/orgs/attestations.md +++ b/content/rest/orgs/attestations.md @@ -5,8 +5,6 @@ intro: Use the REST API to interact with artifact attestations. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/orgs/blocking.md b/content/rest/orgs/blocking.md index e3b2111ea04c..5275acc13de5 100644 --- a/content/rest/orgs/blocking.md +++ b/content/rest/orgs/blocking.md @@ -5,8 +5,6 @@ intro: Use the REST API to block and unblock users in an organization. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/orgs/bypass-requests.md b/content/rest/orgs/bypass-requests.md index 85f8109e1f86..e53ef6dea1f6 100644 --- a/content/rest/orgs/bypass-requests.md +++ b/content/rest/orgs/bypass-requests.md @@ -5,8 +5,6 @@ intro: Use the REST API to manage organization push rule bypass requests. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '>=3.17' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/orgs/custom-properties-for-orgs.md b/content/rest/orgs/custom-properties-for-orgs.md index a035a0e3d222..493df8affb6e 100644 --- a/content/rest/orgs/custom-properties-for-orgs.md +++ b/content/rest/orgs/custom-properties-for-orgs.md @@ -4,8 +4,6 @@ shortTitle: Custom properties for organizations intro: Use the REST API to manage custom property values for an organization versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/orgs/custom-properties.md b/content/rest/orgs/custom-properties.md index 3c66464565ec..7f65e02f67ce 100644 --- a/content/rest/orgs/custom-properties.md +++ b/content/rest/orgs/custom-properties.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true redirect_from: diff --git a/content/rest/orgs/custom-roles.md b/content/rest/orgs/custom-roles.md index c20b34e9e268..412167eda151 100644 --- a/content/rest/orgs/custom-roles.md +++ b/content/rest/orgs/custom-roles.md @@ -5,8 +5,6 @@ intro: Use the REST API to interact with custom repository roles. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true redirect_from: - /rest/orgs/custom_roles diff --git a/content/rest/orgs/index.md b/content/rest/orgs/index.md index 2a538bf4c7c5..80b782caa631 100644 --- a/content/rest/orgs/index.md +++ b/content/rest/orgs/index.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /api-insights - /artifact-metadata diff --git a/content/rest/orgs/issue-types.md b/content/rest/orgs/issue-types.md index e23524792504..498b21c975f7 100644 --- a/content/rest/orgs/issue-types.md +++ b/content/rest/orgs/issue-types.md @@ -5,8 +5,6 @@ intro: Use the REST API to interact with issue types in an organization. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/orgs/members.md b/content/rest/orgs/members.md index f41fe4b74bf4..22fa64b58e63 100644 --- a/content/rest/orgs/members.md +++ b/content/rest/orgs/members.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/orgs/network-configurations.md b/content/rest/orgs/network-configurations.md index c951ac9b5c0b..beb6526061a1 100644 --- a/content/rest/orgs/network-configurations.md +++ b/content/rest/orgs/network-configurations.md @@ -5,8 +5,6 @@ intro: REST API endpoints for network configurations versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API redirect_from: - /rest/settings/network-configurations - /rest/settings diff --git a/content/rest/orgs/organization-roles.md b/content/rest/orgs/organization-roles.md index d0fad704f55c..23bd1798aef7 100644 --- a/content/rest/orgs/organization-roles.md +++ b/content/rest/orgs/organization-roles.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/orgs/orgs.md b/content/rest/orgs/orgs.md index 0a65d507c732..e074301a370e 100644 --- a/content/rest/orgs/orgs.md +++ b/content/rest/orgs/orgs.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/orgs/outside-collaborators.md b/content/rest/orgs/outside-collaborators.md index 4d2c70b22726..6e3a4c49bab9 100644 --- a/content/rest/orgs/outside-collaborators.md +++ b/content/rest/orgs/outside-collaborators.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/orgs/personal-access-tokens.md b/content/rest/orgs/personal-access-tokens.md index 801d9c2ff842..1c8c3c5e77c3 100644 --- a/content/rest/orgs/personal-access-tokens.md +++ b/content/rest/orgs/personal-access-tokens.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/orgs/rule-suites.md b/content/rest/orgs/rule-suites.md index 0931bb9018c2..abfb1777dbca 100644 --- a/content/rest/orgs/rule-suites.md +++ b/content/rest/orgs/rule-suites.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/orgs/rules.md b/content/rest/orgs/rules.md index 1cc3fe09fb19..ae80c5aaede0 100644 --- a/content/rest/orgs/rules.md +++ b/content/rest/orgs/rules.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/orgs/security-managers.md b/content/rest/orgs/security-managers.md index a99fe4060515..0d26133466c6 100644 --- a/content/rest/orgs/security-managers.md +++ b/content/rest/orgs/security-managers.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/orgs/webhooks.md b/content/rest/orgs/webhooks.md index e8c701d0bbfb..5860f2b28d0b 100644 --- a/content/rest/orgs/webhooks.md +++ b/content/rest/orgs/webhooks.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/packages/index.md b/content/rest/packages/index.md index 90b080c0348e..cb97be09bb75 100644 --- a/content/rest/packages/index.md +++ b/content/rest/packages/index.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API children: - /packages autogenerated: rest diff --git a/content/rest/packages/packages.md b/content/rest/packages/packages.md index 942d0ad71033..644909661a15 100644 --- a/content/rest/packages/packages.md +++ b/content/rest/packages/packages.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API redirect_from: - /rest/reference/packages autogenerated: rest diff --git a/content/rest/pages/index.md b/content/rest/pages/index.md index 5d1c973a8d5c..2d74c526eb5b 100644 --- a/content/rest/pages/index.md +++ b/content/rest/pages/index.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API children: - /pages autogenerated: rest diff --git a/content/rest/pages/pages.md b/content/rest/pages/pages.md index 29aac1834851..f5202a3fd29b 100644 --- a/content/rest/pages/pages.md +++ b/content/rest/pages/pages.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API redirect_from: - /rest/reference/pages autogenerated: rest diff --git a/content/rest/private-registries/index.md b/content/rest/private-registries/index.md index 0371fe5d1a0a..8fca29744b7b 100644 --- a/content/rest/private-registries/index.md +++ b/content/rest/private-registries/index.md @@ -1,7 +1,5 @@ --- title: Private registries -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true children: diff --git a/content/rest/private-registries/organization-configurations.md b/content/rest/private-registries/organization-configurations.md index 98086a3ceabf..0bf0c6b3e00f 100644 --- a/content/rest/private-registries/organization-configurations.md +++ b/content/rest/private-registries/organization-configurations.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.16' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/projects-classic/cards.md b/content/rest/projects-classic/cards.md index 7f62e7d84d77..61643c39da75 100644 --- a/content/rest/projects-classic/cards.md +++ b/content/rest/projects-classic/cards.md @@ -9,8 +9,6 @@ intro: >- variables.projects.projects_v1_board %}. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: <=3.16 -topics: - - API autogenerated: rest redirect_from: - /rest/projects/cards diff --git a/content/rest/projects-classic/collaborators.md b/content/rest/projects-classic/collaborators.md index 9922e6c090da..3a29239945ee 100644 --- a/content/rest/projects-classic/collaborators.md +++ b/content/rest/projects-classic/collaborators.md @@ -9,8 +9,6 @@ intro: >- variables.projects.projects_v1_board %}. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: <=3.16 -topics: - - API autogenerated: rest redirect_from: - /rest/projects/collaborators diff --git a/content/rest/projects-classic/columns.md b/content/rest/projects-classic/columns.md index f9c13a28cc9b..7e64c0a61808 100644 --- a/content/rest/projects-classic/columns.md +++ b/content/rest/projects-classic/columns.md @@ -9,8 +9,6 @@ intro: >- variables.projects.projects_v1_board %}. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: <=3.16 -topics: - - API autogenerated: rest redirect_from: - /rest/projects/columns diff --git a/content/rest/projects-classic/index.md b/content/rest/projects-classic/index.md index 97b1f4c2edea..2b53fbefc38d 100644 --- a/content/rest/projects-classic/index.md +++ b/content/rest/projects-classic/index.md @@ -5,8 +5,6 @@ intro: 'Use the REST API to create, list, update, delete and customize {% data v redirect_from: - /v3/projects - /rest/reference/projects -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true children: diff --git a/content/rest/projects-classic/projects.md b/content/rest/projects-classic/projects.md index 8de975dbfb3e..57b50ff5dc02 100644 --- a/content/rest/projects-classic/projects.md +++ b/content/rest/projects-classic/projects.md @@ -7,8 +7,6 @@ intro: >- variables.projects.projects_v1_boards %} in a repository. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: <=3.16 -topics: - - API autogenerated: rest redirect_from: - /v3/projects/projects diff --git a/content/rest/projects/drafts.md b/content/rest/projects/drafts.md index a684db65a00e..9cc17addc974 100644 --- a/content/rest/projects/drafts.md +++ b/content/rest/projects/drafts.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.20' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/projects/fields.md b/content/rest/projects/fields.md index 334152b2415d..53c80a4111a3 100644 --- a/content/rest/projects/fields.md +++ b/content/rest/projects/fields.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.20' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/projects/index.md b/content/rest/projects/index.md index c155e1202b2d..991a86244d32 100644 --- a/content/rest/projects/index.md +++ b/content/rest/projects/index.md @@ -1,7 +1,5 @@ --- title: Projects -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true children: diff --git a/content/rest/projects/items.md b/content/rest/projects/items.md index e8da21560d8e..46be2aa7cdc1 100644 --- a/content/rest/projects/items.md +++ b/content/rest/projects/items.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.20' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/projects/projects.md b/content/rest/projects/projects.md index aa99d65f9256..d8babb1e43f0 100644 --- a/content/rest/projects/projects.md +++ b/content/rest/projects/projects.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.20' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/projects/views.md b/content/rest/projects/views.md index d950a3a84ec5..d4ab87be3c5f 100644 --- a/content/rest/projects/views.md +++ b/content/rest/projects/views.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.20' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/pulls/comments.md b/content/rest/pulls/comments.md index 09f43aaa632c..fcee528514fe 100644 --- a/content/rest/pulls/comments.md +++ b/content/rest/pulls/comments.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/pulls/index.md b/content/rest/pulls/index.md index c1adf5805ef6..6e0a23186c52 100644 --- a/content/rest/pulls/index.md +++ b/content/rest/pulls/index.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /pulls - /comments diff --git a/content/rest/pulls/pulls.md b/content/rest/pulls/pulls.md index 3e981fed57e5..6f366495190e 100644 --- a/content/rest/pulls/pulls.md +++ b/content/rest/pulls/pulls.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/pulls/review-requests.md b/content/rest/pulls/review-requests.md index 4dcdef01c6bf..42235d2d3d03 100644 --- a/content/rest/pulls/review-requests.md +++ b/content/rest/pulls/review-requests.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/pulls/reviews.md b/content/rest/pulls/reviews.md index 4e75ad04bf16..084dc88afcf7 100644 --- a/content/rest/pulls/reviews.md +++ b/content/rest/pulls/reviews.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/quickstart.md b/content/rest/quickstart.md index 94279f38e391..248a20ee4928 100644 --- a/content/rest/quickstart.md +++ b/content/rest/quickstart.md @@ -7,8 +7,6 @@ versions: ghes: '*' ghec: '*' shortTitle: Quickstart -topics: - - API redirect_from: - /guides/getting-started - /v3/guides/getting-started diff --git a/content/rest/rate-limit/index.md b/content/rest/rate-limit/index.md index c2b7f5a325df..8b2960967e3d 100644 --- a/content/rest/rate-limit/index.md +++ b/content/rest/rate-limit/index.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API children: - /rate-limit autogenerated: rest diff --git a/content/rest/rate-limit/rate-limit.md b/content/rest/rate-limit/rate-limit.md index 9b66ba2cc614..80b261cbb5ca 100644 --- a/content/rest/rate-limit/rate-limit.md +++ b/content/rest/rate-limit/rate-limit.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API redirect_from: - /rest/reference/rate-limit autogenerated: rest diff --git a/content/rest/reactions/index.md b/content/rest/reactions/index.md index 4df8e49079c3..641bb98c8053 100644 --- a/content/rest/reactions/index.md +++ b/content/rest/reactions/index.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API children: - /reactions autogenerated: rest diff --git a/content/rest/reactions/reactions.md b/content/rest/reactions/reactions.md index 5b5e44e9ab8c..f51e03944967 100644 --- a/content/rest/reactions/reactions.md +++ b/content/rest/reactions/reactions.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API redirect_from: - /rest/reference/reactions autogenerated: rest diff --git a/content/rest/releases/assets.md b/content/rest/releases/assets.md index 3662775942e9..0e4bd55d25bd 100644 --- a/content/rest/releases/assets.md +++ b/content/rest/releases/assets.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/releases/index.md b/content/rest/releases/index.md index 91899fe1faea..135f9145bd50 100644 --- a/content/rest/releases/index.md +++ b/content/rest/releases/index.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /releases - /assets diff --git a/content/rest/releases/releases.md b/content/rest/releases/releases.md index bfd570700f6e..281210a3bea0 100644 --- a/content/rest/releases/releases.md +++ b/content/rest/releases/releases.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/repos/attestations.md b/content/rest/repos/attestations.md index b507c02e9aa7..d06bc42a5c69 100644 --- a/content/rest/repos/attestations.md +++ b/content/rest/repos/attestations.md @@ -5,8 +5,6 @@ intro: Use the REST API to manage repository attestations. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/repos/autolinks.md b/content/rest/repos/autolinks.md index f99dde000539..4317fd7dbfda 100644 --- a/content/rest/repos/autolinks.md +++ b/content/rest/repos/autolinks.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/repos/bypass-requests.md b/content/rest/repos/bypass-requests.md index 15ba2bd4901a..131000bac36b 100644 --- a/content/rest/repos/bypass-requests.md +++ b/content/rest/repos/bypass-requests.md @@ -5,8 +5,6 @@ intro: Use the REST API to manage repository push rule bypass requests. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '>=3.17' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/repos/contents.md b/content/rest/repos/contents.md index a476a03ae58e..089e95ca2e1f 100644 --- a/content/rest/repos/contents.md +++ b/content/rest/repos/contents.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/repos/custom-properties.md b/content/rest/repos/custom-properties.md index 5fdc68ee6895..a216ab7287e4 100644 --- a/content/rest/repos/custom-properties.md +++ b/content/rest/repos/custom-properties.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true redirect_from: diff --git a/content/rest/repos/forks.md b/content/rest/repos/forks.md index 854d56ba6c39..834f4c9d08d5 100644 --- a/content/rest/repos/forks.md +++ b/content/rest/repos/forks.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/repos/index.md b/content/rest/repos/index.md index ce1e0855ddec..b1e44f16fce2 100644 --- a/content/rest/repos/index.md +++ b/content/rest/repos/index.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /attestations - /autolinks diff --git a/content/rest/repos/lfs.md b/content/rest/repos/lfs.md index 88cf5b58cc4e..31cecd57e232 100644 --- a/content/rest/repos/lfs.md +++ b/content/rest/repos/lfs.md @@ -7,8 +7,6 @@ intro: >- versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/repos/repos.md b/content/rest/repos/repos.md index 3c5347abf0be..5252fb1c0533 100644 --- a/content/rest/repos/repos.md +++ b/content/rest/repos/repos.md @@ -8,8 +8,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/repos/rule-suites.md b/content/rest/repos/rule-suites.md index e9aca2db9666..d826af8ec76b 100644 --- a/content/rest/repos/rule-suites.md +++ b/content/rest/repos/rule-suites.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/repos/rules.md b/content/rest/repos/rules.md index bcab9935219c..faffea2e7d85 100644 --- a/content/rest/repos/rules.md +++ b/content/rest/repos/rules.md @@ -8,8 +8,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true redirect_from: diff --git a/content/rest/repos/tags.md b/content/rest/repos/tags.md index 6cd8a4c9005d..da7eb8845d58 100644 --- a/content/rest/repos/tags.md +++ b/content/rest/repos/tags.md @@ -5,8 +5,6 @@ shortTitle: Tags intro: Use the REST API to manage tags for a repository. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/repos/webhooks.md b/content/rest/repos/webhooks.md index 7302207d9105..6e8915e5f6fb 100644 --- a/content/rest/repos/webhooks.md +++ b/content/rest/repos/webhooks.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true redirect_from: diff --git a/content/rest/scim/index.md b/content/rest/scim/index.md index a010a21c9929..396332a35f2c 100644 --- a/content/rest/scim/index.md +++ b/content/rest/scim/index.md @@ -7,8 +7,6 @@ intro: >- with SCIM. versions: ghec: '*' -topics: - - API children: - /scim autogenerated: rest diff --git a/content/rest/scim/scim.md b/content/rest/scim/scim.md index da0f1e475457..f418880e8496 100644 --- a/content/rest/scim/scim.md +++ b/content/rest/scim/scim.md @@ -7,8 +7,6 @@ intro: >- with SCIM. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' -topics: - - API redirect_from: - /rest/reference/scim autogenerated: rest diff --git a/content/rest/search/index.md b/content/rest/search/index.md index 1b4b0ce5e7ed..072862066afc 100644 --- a/content/rest/search/index.md +++ b/content/rest/search/index.md @@ -9,8 +9,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API children: - /search autogenerated: rest diff --git a/content/rest/search/search.md b/content/rest/search/search.md index 5114a0615904..17258199f296 100644 --- a/content/rest/search/search.md +++ b/content/rest/search/search.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API redirect_from: - /rest/reference/search autogenerated: rest diff --git a/content/rest/secret-scanning/alert-dismissal-requests.md b/content/rest/secret-scanning/alert-dismissal-requests.md index ae6a96700719..89b6c487ffe9 100644 --- a/content/rest/secret-scanning/alert-dismissal-requests.md +++ b/content/rest/secret-scanning/alert-dismissal-requests.md @@ -5,8 +5,6 @@ intro: Use the REST API to manage alert dismissal requests for secret scanning. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '>=3.18' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/secret-scanning/delegated-bypass.md b/content/rest/secret-scanning/delegated-bypass.md index fc9395834808..f12c78837c3f 100644 --- a/content/rest/secret-scanning/delegated-bypass.md +++ b/content/rest/secret-scanning/delegated-bypass.md @@ -7,8 +7,6 @@ intro: >- versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '>=3.17' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/secret-scanning/index.md b/content/rest/secret-scanning/index.md index f26aa7cc78a0..0d07c4099130 100644 --- a/content/rest/secret-scanning/index.md +++ b/content/rest/secret-scanning/index.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API children: - /alert-dismissal-requests - /delegated-bypass diff --git a/content/rest/secret-scanning/push-protection.md b/content/rest/secret-scanning/push-protection.md index 05bd67997f4b..270373fcb9de 100644 --- a/content/rest/secret-scanning/push-protection.md +++ b/content/rest/secret-scanning/push-protection.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '>=3.19' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/secret-scanning/secret-scanning.md b/content/rest/secret-scanning/secret-scanning.md index b97b42d6e605..46059d85260c 100644 --- a/content/rest/secret-scanning/secret-scanning.md +++ b/content/rest/secret-scanning/secret-scanning.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API redirect_from: - /rest/reference/secret-scanning autogenerated: rest diff --git a/content/rest/security-advisories/global-advisories.md b/content/rest/security-advisories/global-advisories.md index 4117c3a0544e..0d07cdc8a719 100644 --- a/content/rest/security-advisories/global-advisories.md +++ b/content/rest/security-advisories/global-advisories.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/security-advisories/index.md b/content/rest/security-advisories/index.md index f43b4ed56629..66357817d3d6 100644 --- a/content/rest/security-advisories/index.md +++ b/content/rest/security-advisories/index.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghec: '*' ghes: '>=3.11' -topics: - - API children: - /global-advisories - /repository-advisories diff --git a/content/rest/security-advisories/repository-advisories.md b/content/rest/security-advisories/repository-advisories.md index 331995d99611..1e5fac53bd01 100644 --- a/content/rest/security-advisories/repository-advisories.md +++ b/content/rest/security-advisories/repository-advisories.md @@ -6,8 +6,6 @@ intro: Use the REST API to view and manage repository security advisories. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/teams/external-groups.md b/content/rest/teams/external-groups.md index f79471334f87..06a1c83ada8d 100644 --- a/content/rest/teams/external-groups.md +++ b/content/rest/teams/external-groups.md @@ -9,8 +9,6 @@ intro: >- versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/teams/index.md b/content/rest/teams/index.md index 4f97d6519d92..16c47e35d4cc 100644 --- a/content/rest/teams/index.md +++ b/content/rest/teams/index.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /external-groups - /members diff --git a/content/rest/teams/members.md b/content/rest/teams/members.md index fd2cec0ac0a4..2e52d3846453 100644 --- a/content/rest/teams/members.md +++ b/content/rest/teams/members.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/teams/team-sync.md b/content/rest/teams/team-sync.md index ea24cce32d6c..f7f14f74478e 100644 --- a/content/rest/teams/team-sync.md +++ b/content/rest/teams/team-sync.md @@ -7,8 +7,6 @@ intro: >- groups. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 ghec: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/teams/teams.md b/content/rest/teams/teams.md index a5d03013b372..ed5655d5cfa9 100644 --- a/content/rest/teams/teams.md +++ b/content/rest/teams/teams.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/users/attestations.md b/content/rest/users/attestations.md index 84efc2daec6b..bc13c2c08d10 100644 --- a/content/rest/users/attestations.md +++ b/content/rest/users/attestations.md @@ -5,8 +5,6 @@ intro: Use the REST API to manage artifact attestations. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API autogenerated: rest allowTitleToDifferFromFilename: true --- diff --git a/content/rest/users/blocking.md b/content/rest/users/blocking.md index 45d5e702aa2b..505d7a5f4557 100644 --- a/content/rest/users/blocking.md +++ b/content/rest/users/blocking.md @@ -5,8 +5,6 @@ intro: Use the REST API to manage blocked users. versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/users/emails.md b/content/rest/users/emails.md index ff10fc259f0c..1f723eb04e04 100644 --- a/content/rest/users/emails.md +++ b/content/rest/users/emails.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/users/followers.md b/content/rest/users/followers.md index 24f75ed33782..3e57a296775e 100644 --- a/content/rest/users/followers.md +++ b/content/rest/users/followers.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/users/gpg-keys.md b/content/rest/users/gpg-keys.md index 66c29fd9cbff..c391f71c7c17 100644 --- a/content/rest/users/gpg-keys.md +++ b/content/rest/users/gpg-keys.md @@ -7,8 +7,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/users/index.md b/content/rest/users/index.md index 4ac6760f1649..54d8d1ca4e17 100644 --- a/content/rest/users/index.md +++ b/content/rest/users/index.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /attestations - /blocking diff --git a/content/rest/users/keys.md b/content/rest/users/keys.md index 84202783011c..5b69ec077466 100644 --- a/content/rest/users/keys.md +++ b/content/rest/users/keys.md @@ -6,8 +6,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/users/social-accounts.md b/content/rest/users/social-accounts.md index 1c43af8bd7e7..36b0f8b0fc0e 100644 --- a/content/rest/users/social-accounts.md +++ b/content/rest/users/social-accounts.md @@ -7,8 +7,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/users/ssh-signing-keys.md b/content/rest/users/ssh-signing-keys.md index d6d358d327d3..289349d6173f 100644 --- a/content/rest/users/ssh-signing-keys.md +++ b/content/rest/users/ssh-signing-keys.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghec: '*' ghes: '*' -topics: - - API allowTitleToDifferFromFilename: true autogenerated: rest --- diff --git a/content/rest/users/users.md b/content/rest/users/users.md index 469ccef9ffa9..630290675176 100644 --- a/content/rest/users/users.md +++ b/content/rest/users/users.md @@ -9,8 +9,6 @@ versions: # DO NOT MANUALLY EDIT. CHANGES WILL BE OVERWRITTEN BY A 🤖 fpt: '*' ghec: '*' ghes: '*' -topics: - - API autogenerated: rest --- diff --git a/content/rest/using-the-rest-api/best-practices-for-using-the-rest-api.md b/content/rest/using-the-rest-api/best-practices-for-using-the-rest-api.md index 1df124505c14..58048bf0cfce 100644 --- a/content/rest/using-the-rest-api/best-practices-for-using-the-rest-api.md +++ b/content/rest/using-the-rest-api/best-practices-for-using-the-rest-api.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API shortTitle: Best practices --- diff --git a/content/rest/using-the-rest-api/getting-started-with-the-rest-api.md b/content/rest/using-the-rest-api/getting-started-with-the-rest-api.md index cf629c0458f4..c55e7fe4bbf1 100644 --- a/content/rest/using-the-rest-api/getting-started-with-the-rest-api.md +++ b/content/rest/using-the-rest-api/getting-started-with-the-rest-api.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API redirect_from: - /rest/guides/getting-started-with-the-rest-api - /rest/initialize-the-repo diff --git a/content/rest/using-the-rest-api/github-event-types.md b/content/rest/using-the-rest-api/github-event-types.md index 8b25ef6d1d90..37c32cf45636 100644 --- a/content/rest/using-the-rest-api/github-event-types.md +++ b/content/rest/using-the-rest-api/github-event-types.md @@ -12,8 +12,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Events --- The Events API can return different types of events triggered by activity on GitHub. Each event response contains shared properties, but has a unique `payload` object determined by its event type. The [Event object common properties](#event-object-common-properties) describes the properties shared by all events, and each event type describes the `payload` properties that are unique to the specific event. diff --git a/content/rest/using-the-rest-api/index.md b/content/rest/using-the-rest-api/index.md index abf5a32ba5e6..a06689b58e44 100644 --- a/content/rest/using-the-rest-api/index.md +++ b/content/rest/using-the-rest-api/index.md @@ -5,8 +5,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API children: - /getting-started-with-the-rest-api - /rate-limits-for-the-rest-api diff --git a/content/rest/using-the-rest-api/issue-event-types.md b/content/rest/using-the-rest-api/issue-event-types.md index 77ca2976d7b8..797575a3b395 100644 --- a/content/rest/using-the-rest-api/issue-event-types.md +++ b/content/rest/using-the-rest-api/issue-event-types.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - Events --- Issue events are triggered by activity in issues and pull requests and are available in the REST API for [Issue events](/rest/issues/events) and [Timeline events](/rest/issues/timeline). Each event type specifies whether the event is available in the REST API for issue events or timeline events. diff --git a/content/rest/using-the-rest-api/libraries-for-the-rest-api.md b/content/rest/using-the-rest-api/libraries-for-the-rest-api.md index 418d9d0373be..51bbc7a9f6d2 100644 --- a/content/rest/using-the-rest-api/libraries-for-the-rest-api.md +++ b/content/rest/using-the-rest-api/libraries-for-the-rest-api.md @@ -11,8 +11,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API --- ## About libraries diff --git a/content/rest/using-the-rest-api/rate-limits-for-the-rest-api.md b/content/rest/using-the-rest-api/rate-limits-for-the-rest-api.md index c60049cdc49e..5ff0c564968a 100644 --- a/content/rest/using-the-rest-api/rate-limits-for-the-rest-api.md +++ b/content/rest/using-the-rest-api/rate-limits-for-the-rest-api.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API redirect_from: - /rest/overview/rate-limits-for-the-rest-api --- diff --git a/content/rest/using-the-rest-api/timezones-and-the-rest-api.md b/content/rest/using-the-rest-api/timezones-and-the-rest-api.md index 1c84f2625a7e..da1c363635c7 100644 --- a/content/rest/using-the-rest-api/timezones-and-the-rest-api.md +++ b/content/rest/using-the-rest-api/timezones-and-the-rest-api.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API --- Some requests that create new data, such as creating a new commit, allow you to provide timezone information when specifying or generating timestamps. diff --git a/content/rest/using-the-rest-api/troubleshooting-the-rest-api.md b/content/rest/using-the-rest-api/troubleshooting-the-rest-api.md index c2e750a90f3c..84b36656ac08 100644 --- a/content/rest/using-the-rest-api/troubleshooting-the-rest-api.md +++ b/content/rest/using-the-rest-api/troubleshooting-the-rest-api.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API --- ## Rate limit errors diff --git a/content/rest/using-the-rest-api/using-cors-and-jsonp-to-make-cross-origin-requests.md b/content/rest/using-the-rest-api/using-cors-and-jsonp-to-make-cross-origin-requests.md index c130e40d3361..a98228576531 100644 --- a/content/rest/using-the-rest-api/using-cors-and-jsonp-to-make-cross-origin-requests.md +++ b/content/rest/using-the-rest-api/using-cors-and-jsonp-to-make-cross-origin-requests.md @@ -6,8 +6,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API --- ## About cross-origin requests diff --git a/content/rest/using-the-rest-api/using-pagination-in-the-rest-api.md b/content/rest/using-the-rest-api/using-pagination-in-the-rest-api.md index ef1498a76c4b..a586699411d5 100644 --- a/content/rest/using-the-rest-api/using-pagination-in-the-rest-api.md +++ b/content/rest/using-the-rest-api/using-pagination-in-the-rest-api.md @@ -10,8 +10,6 @@ versions: fpt: '*' ghes: '*' ghec: '*' -topics: - - API shortTitle: Pagination --- diff --git a/data/llms-txt-config.yml b/data/llms-txt-config.yml new file mode 100644 index 000000000000..7b7c6eecf015 --- /dev/null +++ b/data/llms-txt-config.yml @@ -0,0 +1,77 @@ +# Configuration for the llms.txt generation script +# (src/workflows/generate-llms-txt.ts). +# +# Writers can edit this file to change what appears in the generated +# llms.txt for github.com without modifying TypeScript code. +# +# Fields are ordered to match the output in the generated file. + +# Header text at the top of llms.txt +header: | + # GitHub + + > GitHub is a developer platform for building, shipping, and maintaining software. It provides cloud-based Git repository hosting, CI/CD via GitHub Actions, project management with Issues and Projects, code review via pull requests, AI-powered development with GitHub Copilot, and APIs (REST and GraphQL) for automation and integration. + + GitHub documentation is available at https://docs.github.com. The content covers GitHub.com (cloud), GitHub Enterprise Server, and GitHub Enterprise Cloud. + +# Programmatic access section +api_section: | + ## Programmatic access (retrieve markdown via APIs instead of parsing HTML) + + To retrieve full article content, page lists, or search results programmatically, please use the APIs below. These APIs return structured markdown and JSON and are the preferred way for LLMs and automated tools to access GitHub documentation. + + - [Page List API](https://docs.github.com/api/pagelist/en/free-pro-team@latest): Returns every docs page path for a given language and version + - [Article API](https://docs.github.com/api/article): Returns the full rendered content of any docs page as markdown. Example: `curl "https://docs.github.com/api/article?pathname=/en/get-started/start-your-journey/about-github-and-git"` + - [Search API](https://docs.github.com/api/search): Search across all docs content. Example: `curl "https://docs.github.com/api/search?query=actions&language=en&version=free-pro-team@latest"` + +# Section heading for pinned pages +pinned_section_heading: | + Building with GitHub (for coding agents and automation) + +# Pinned pages for coding agents and automation — always included +# regardless of popularity. Edit this list to add or remove pages. +pinned_pages: + - copilot/how-tos/provide-context/use-mcp/extend-copilot-chat-with-mcp + - copilot/how-tos/provide-context/use-mcp/use-the-github-mcp-server + - copilot/how-tos/provide-context/use-mcp/set-up-the-github-mcp-server + - copilot/how-tos/use-copilot-agents/coding-agent/about-coding-agent + - copilot/how-tos/use-copilot-agents/coding-agent/create-custom-agents + - github-cli/github-cli + - github-cli/github-cli/quickstart + - rest + - graphql + - actions + +# Number of top pages (by popularity) to include +top_n: 100 + +# Categories with fewer pages than this are grouped under "More pages" +small_category_threshold: 3 + +# Categories to exclude from llms.txt. +# WARNING: early-access MUST stay excluded — never expose internal content. +excluded_categories: + - communities + - contributing + - early-access + - education + - enterprise-onboarding + - integrations + - nonprofit + - search + - site-policy + - subscriptions-and-notifications + - support + - video-transcripts + +# Slugs to exclude (e.g. index pages) +excluded_slugs: + - index + +# Section heading for small categories grouped together +more_pages_heading: | + More pages + +# Comment added at the end of the generated file +auto_update_comment: | + diff --git a/data/reusables/copilot/code-review/custom-instructions-branch.md b/data/reusables/copilot/code-review/custom-instructions-branch.md new file mode 100644 index 000000000000..bef9ee654700 --- /dev/null +++ b/data/reusables/copilot/code-review/custom-instructions-branch.md @@ -0,0 +1 @@ +When reviewing a pull request, {% data variables.product.prodname_copilot_short %} uses the custom instructions in the base branch of the pull request. For example, if your pull request seeks to merge `my-feature-branch` into `main`, {% data variables.product.prodname_copilot_short %} will use the custom instructions in `main`. diff --git a/data/reusables/copilot/code-review/custom-instructions-limit.md b/data/reusables/copilot/code-review/custom-instructions-limit.md index 183daf978c36..27650d27175f 100644 --- a/data/reusables/copilot/code-review/custom-instructions-limit.md +++ b/data/reusables/copilot/code-review/custom-instructions-limit.md @@ -1,2 +1,3 @@ > [!NOTE] -> {% data variables.copilot.copilot_code-review_short %} only reads the first 4,000 characters of any custom instruction file. Any instructions beyond this limit will not affect the reviews generated by {% data variables.copilot.copilot_code-review_short %}. This limit does not apply to {% data variables.copilot.copilot_chat_short %} or {% data variables.copilot.copilot_coding_agent %}. +> * {% data variables.copilot.copilot_code-review_short %} only reads the first 4,000 characters of any custom instruction file. Any instructions beyond this limit will not affect the reviews generated by {% data variables.copilot.copilot_code-review_short %}. This limit does not apply to {% data variables.copilot.copilot_chat_short %} or {% data variables.copilot.copilot_coding_agent %}. +> * {% data reusables.copilot.code-review.custom-instructions-branch %} diff --git a/data/tables/copilot/model-supported-clients.yml b/data/tables/copilot/model-supported-clients.yml index a5cdba4266b6..9ab59c52fd1a 100644 --- a/data/tables/copilot/model-supported-clients.yml +++ b/data/tables/copilot/model-supported-clients.yml @@ -169,9 +169,9 @@ dotcom: true vscode: true vs: true - eclipse: false - xcode: false - jetbrains: false + eclipse: true + xcode: true + jetbrains: true - name: Grok Code Fast 1 dotcom: true diff --git a/package.json b/package.json index 0886b1fa929b..87651a992706 100644 --- a/package.json +++ b/package.json @@ -63,6 +63,7 @@ "generate-code-scanning-query-list": "tsx src/codeql-queries/scripts/generate-code-scanning-query-list.ts", "generate-code-quality-query-list": "tsx src/codeql-queries/scripts/generate-code-quality-query-list.ts", "generate-content-linter-docs": "tsx src/content-linter/scripts/generate-docs.ts", + "generate-llms-txt": "tsx src/workflows/generate-llms-txt.ts", "move-content": "tsx src/content-render/scripts/move-content.ts", "move-by-content-type": "tsx src/content-render/scripts/move-by-content-type.ts", "openapi-docs": "tsx src/rest/docs.ts", diff --git a/src/workflows/generate-llms-txt.ts b/src/workflows/generate-llms-txt.ts new file mode 100644 index 000000000000..f393e3f82275 --- /dev/null +++ b/src/workflows/generate-llms-txt.ts @@ -0,0 +1,239 @@ +// +// Generates the llms.txt content for github.com from popularity data +// and the docs page catalog. Run via: +// +// npx tsx src/workflows/generate-llms-txt.ts > llms.txt +// +// Requires DOCS_BOT_PAT_BASE for fetching popularity data from +// github/docs-internal-data. +// +// Configuration lives in data/llms-txt-config.yml — writers can edit +// categories, pinned pages, thresholds, and text there without +// touching this script. +// + +import fs from 'fs' + +import yaml from 'js-yaml' + +import { loadPageMap } from '@/frame/lib/page-data' +import { renderContent } from '@/content-render/index' +import { getDataByLanguage } from '@/data-directory/lib/get-data' +import { allVersions } from '@/versions/lib/all-versions' +import type { Page, Context } from '@/types' + +// ===================================================================== +// Configuration — loaded from data/llms-txt-config.yml +// ===================================================================== + +interface LlmsTxtConfig { + top_n: number + small_category_threshold: number + excluded_categories: string[] + excluded_slugs: string[] + pinned_pages: string[] + pinned_section_heading: string + more_pages_heading: string + auto_update_comment: string + header: string + api_section: string +} + +export function loadConfig(configPath = 'data/llms-txt-config.yml'): LlmsTxtConfig { + return yaml.load(fs.readFileSync(configPath, 'utf8')) as LlmsTxtConfig +} + +const config = loadConfig() + +export const ROLLUP_URL = + 'https://raw.githubusercontent.com/github/docs-internal-data/main/hydro/rollups/pageviews/en/free-pro-team/rollup.json' +export const TOP_N = config.top_n +export const SMALL_CATEGORY_THRESHOLD = config.small_category_threshold +export const EXCLUDED_CATEGORIES = new Set(config.excluded_categories) +export const EXCLUDED_SLUGS = new Set(config.excluded_slugs) +export const PINNED_PAGES = config.pinned_pages + +const BASE_URL = 'https://docs.github.com' + +const HEADER = config.header.trimEnd() +const API_SECTION = config.api_section.trimEnd() +const PINNED_SECTION_HEADING = config.pinned_section_heading.trimEnd() +const MORE_PAGES_HEADING = config.more_pages_heading.trimEnd() +const AUTO_UPDATE_COMMENT = config.auto_update_comment.trimEnd() + +// ===================================================================== +// Types +// ===================================================================== + +export type Rollup = Record +export type PageMap = Record + +// ===================================================================== +// Data loading +// ===================================================================== + +export async function fetchRollup(): Promise { + const token = process.env.DOCS_BOT_PAT_BASE + if (!token) throw new Error('DOCS_BOT_PAT_BASE is required') + const res = await fetch(ROLLUP_URL, { + headers: { + Accept: 'application/vnd.github.raw+json', + Authorization: `token ${token}`, + }, + }) + if (!res.ok) + throw new Error(`Failed to fetch rollup: ${res.status} ${res.statusText} (${ROLLUP_URL})`) + return (await res.json()) as Rollup +} + +// ===================================================================== +// Liquid rendering +// ===================================================================== + +const renderContext: Context = { + currentLanguage: 'en', + currentVersion: 'free-pro-team@latest', + currentVersionObj: allVersions['free-pro-team@latest'], + getDottedData: (path: string) => getDataByLanguage(path, 'en'), +} as Context + +export async function renderLiquid(template: string): Promise { + if (!template || (!template.includes('{%') && !template.includes('{{'))) return template + const html = await renderContent(template, renderContext, { textOnly: true }) + return html.replace(/^

|<\/p>$/g, '').trim() +} + +// ===================================================================== +// Helpers +// ===================================================================== + +export function pageExists(pagePath: string, pages: PageMap): boolean { + return `/en/${pagePath}` in pages +} + +export async function getPageTitle(permalink: string, pages: PageMap): Promise { + const page = pages[permalink] + const raw = page?.shortTitle || page?.title || '' + if (!raw) return titleCase(permalink.split('/').pop() || '') + const rendered = await renderLiquid(raw) + return rendered.replace(/ documentation$/i, '') +} + +export async function getPageIntro(permalink: string, pages: PageMap): Promise { + const page = pages[permalink] + const raw = page?.intro || '' + if (!raw) return null + return renderLiquid(raw) +} + +export async function formatPageLine(pagePath: string, pages: PageMap): Promise { + const permalink = `/en/${pagePath}` + const title = + (await getPageTitle(permalink, pages)) || titleCase(pagePath.split('/').pop() || pagePath) + const intro = await getPageIntro(permalink, pages) + if (intro) return `- [${title}](${BASE_URL}${permalink}): ${intro}` + return `- [${title}](${BASE_URL}${permalink})` +} + +export function titleCase(slug: string): string { + return slug + .split('-') + .map((w) => w.charAt(0).toUpperCase() + w.slice(1)) + .join(' ') +} + +// ===================================================================== +// Main generation +// ===================================================================== + +export async function generate(pages: PageMap, rollup: Rollup): Promise { + const pinnedSet = new Set(PINNED_PAGES) + const topPages = Object.entries(rollup) + .filter( + ([path]) => + path && + !EXCLUDED_SLUGS.has(path) && + !EXCLUDED_CATEGORIES.has(path.split('/')[0]) && + !pinnedSet.has(path) && + pageExists(path, pages), + ) + .sort((a, b) => b[1] - a[1]) + .slice(0, TOP_N) + + // Group by category, alphabetical within each + const categoryMap = new Map() + for (const [pagePath] of topPages) { + const category = pagePath.split('/')[0] + const list = categoryMap.get(category) ?? [] + list.push(pagePath) + categoryMap.set(category, list) + } + for (const [, list] of categoryMap) list.sort() + const categories = new Map( + [...categoryMap.entries()].sort( + (a, b) => b[1].length - a[1].length || a[0].localeCompare(b[0]), + ), + ) + + const sections: string[] = [HEADER, '', API_SECTION, ''] + + // Pinned section + const existingPinned = PINNED_PAGES.filter((p) => pageExists(p, pages)) + if (existingPinned.length > 0) { + sections.push(`## ${PINNED_SECTION_HEADING}`, '') + for (const p of existingPinned) sections.push(await formatPageLine(p, pages)) + sections.push('') + } + + // Large and small categories + const largeCategories: [string, string[]][] = [] + const smallCategoryPages: string[] = [] + for (const [cat, catPages] of categories) { + if (catPages.length < SMALL_CATEGORY_THRESHOLD) smallCategoryPages.push(...catPages) + else largeCategories.push([cat, catPages]) + } + smallCategoryPages.sort() + + for (const [cat, catPages] of largeCategories) { + const title = (await getPageTitle(`/en/${cat}`, pages)) || titleCase(cat) + sections.push(`## ${title}`, '') + const intro = await getPageIntro(`/en/${cat}`, pages) + if (intro) sections.push(`> ${intro}`, '') + for (const p of catPages) sections.push(await formatPageLine(p, pages)) + sections.push('') + } + + if (smallCategoryPages.length > 0) { + sections.push(`## ${MORE_PAGES_HEADING}`, '') + for (const p of smallCategoryPages) sections.push(await formatPageLine(p, pages)) + sections.push('') + } + + sections.push(AUTO_UPDATE_COMMENT) + return sections.join('\n') +} + +// ===================================================================== +// Entry point +// ===================================================================== + +async function main() { + const pages = await loadPageMap(undefined, ['en']) + const rollup = await fetchRollup() + const content = await generate(pages, rollup) + process.stdout.write(content) +} + +// Only run when executed directly, not when imported for testing +const isEntryPoint = + import.meta.url === `file://${process.argv[1]}` || + process.argv[1]?.endsWith('generate-llms-txt.ts') + +if (isEntryPoint) { + try { + await main() + } catch (err) { + console.error(err) + process.exit(1) + } +} diff --git a/src/workflows/tests/generate-llms-txt.ts b/src/workflows/tests/generate-llms-txt.ts new file mode 100644 index 000000000000..d4a26958a9ce --- /dev/null +++ b/src/workflows/tests/generate-llms-txt.ts @@ -0,0 +1,339 @@ +import { beforeAll, describe, expect, test } from 'vitest' + +import { + generate, + pageExists, + getPageTitle, + getPageIntro, + formatPageLine, + renderLiquid, + titleCase, + EXCLUDED_CATEGORIES, + EXCLUDED_SLUGS, + PINNED_PAGES, + TOP_N, + SMALL_CATEGORY_THRESHOLD, + type PageMap, + type Rollup, +} from '../generate-llms-txt' +import type { Page } from '@/types' + +// --------------------------------------------------------------------------- +// Helpers +// --------------------------------------------------------------------------- + +function makePage(overrides: Partial = {}): Page { + return { + title: 'Test Page', + shortTitle: '', + intro: '', + ...overrides, + } as Page +} + +function makePages(entries: Record>): PageMap { + const pages: PageMap = {} + for (const [path, overrides] of Object.entries(entries)) { + pages[`/en/${path}`] = makePage(overrides) + } + return pages +} + +function makeRollup(paths: string[], startScore = 1000): Rollup { + const rollup: Rollup = {} + for (let i = 0; i < paths.length; i++) { + rollup[paths[i]] = startScore - i + } + return rollup +} + +// --------------------------------------------------------------------------- +// titleCase +// --------------------------------------------------------------------------- + +describe('titleCase', () => { + test('capitalizes each word separated by hyphens', () => { + expect(titleCase('hello-world')).toBe('Hello World') + }) + + test('handles single word', () => { + expect(titleCase('actions')).toBe('Actions') + }) + + test('handles empty string', () => { + expect(titleCase('')).toBe('') + }) +}) + +// --------------------------------------------------------------------------- +// pageExists +// --------------------------------------------------------------------------- + +describe('pageExists', () => { + const pages = makePages({ 'actions/overview': {} }) + + test('returns true for existing page', () => { + expect(pageExists('actions/overview', pages)).toBe(true) + }) + + test('returns false for missing page', () => { + expect(pageExists('actions/missing', pages)).toBe(false) + }) +}) + +// --------------------------------------------------------------------------- +// getPageTitle +// --------------------------------------------------------------------------- + +describe('getPageTitle', () => { + test('returns shortTitle when available', async () => { + const pages = makePages({ + 'actions/overview': { shortTitle: 'Overview', title: 'Actions Overview' }, + }) + expect(await getPageTitle('/en/actions/overview', pages)).toBe('Overview') + }) + + test('falls back to title when no shortTitle', async () => { + const pages = makePages({ 'actions/overview': { title: 'Actions Overview', shortTitle: '' } }) + expect(await getPageTitle('/en/actions/overview', pages)).toBe('Actions Overview') + }) + + test('strips " documentation" suffix', async () => { + const pages = makePages({ actions: { title: 'Actions documentation' } }) + expect(await getPageTitle('/en/actions', pages)).toBe('Actions') + }) + + test('falls back to titleCase of slug for missing page', async () => { + expect(await getPageTitle('/en/actions/cool-feature', {})).toBe('Cool Feature') + }) +}) + +// --------------------------------------------------------------------------- +// renderLiquid +// --------------------------------------------------------------------------- + +describe('renderLiquid', () => { + test('renders {% data %} variables', async () => { + const result = await renderLiquid('{% data variables.product.prodname_copilot_short %}') + expect(result).toBe('Copilot') + }) + + test('returns plain text unchanged', async () => { + const result = await renderLiquid('No liquid here') + expect(result).toBe('No liquid here') + }) +}) + +// --------------------------------------------------------------------------- +// getPageIntro +// --------------------------------------------------------------------------- + +describe('getPageIntro', () => { + test('returns intro text when present', async () => { + const pages = makePages({ 'actions/overview': { intro: 'An intro sentence.' } }) + expect(await getPageIntro('/en/actions/overview', pages)).toBe('An intro sentence.') + }) + + test('returns null when no intro', async () => { + const pages = makePages({ 'actions/overview': { intro: '' } }) + expect(await getPageIntro('/en/actions/overview', pages)).toBeNull() + }) + + test('returns null for missing page', async () => { + expect(await getPageIntro('/en/actions/missing', {})).toBeNull() + }) +}) + +// --------------------------------------------------------------------------- +// formatPageLine +// --------------------------------------------------------------------------- + +describe('formatPageLine', () => { + test('formats with title and intro', async () => { + const pages = makePages({ 'actions/overview': { title: 'Overview', intro: 'Learn about it.' } }) + const line = await formatPageLine('actions/overview', pages) + expect(line).toBe('- [Overview](https://docs.github.com/en/actions/overview): Learn about it.') + }) + + test('formats without intro', async () => { + const pages = makePages({ 'actions/overview': { title: 'Overview' } }) + const line = await formatPageLine('actions/overview', pages) + expect(line).toBe('- [Overview](https://docs.github.com/en/actions/overview)') + }) +}) + +// --------------------------------------------------------------------------- +// Configuration sanity checks +// --------------------------------------------------------------------------- + +describe('configuration', () => { + test('early-access is always excluded', () => { + expect(EXCLUDED_CATEGORIES.has('early-access')).toBe(true) + }) + + test('index slug is excluded', () => { + expect(EXCLUDED_SLUGS.has('index')).toBe(true) + }) + + test('TOP_N is 100', () => { + expect(TOP_N).toBe(100) + }) + + test('SMALL_CATEGORY_THRESHOLD is 3', () => { + expect(SMALL_CATEGORY_THRESHOLD).toBe(3) + }) + + test('pinned pages include MCP and CLI', () => { + const joined = PINNED_PAGES.join(' ') + expect(joined).toContain('mcp') + expect(joined).toContain('github-cli') + }) +}) + +// --------------------------------------------------------------------------- +// generate (end-to-end with mock data) +// --------------------------------------------------------------------------- + +describe('generate', () => { + // Build a mock page map and rollup with enough variety to exercise the logic + const pagePaths = [ + 'actions/overview', + 'actions/learn-github-actions', + 'actions/using-workflows', + 'actions/creating-actions', + 'copilot/overview', + 'copilot/quickstart', + 'copilot/using-copilot', + 'repositories/creating-a-repo', + 'repositories/cloning-a-repo', + 'repositories/managing-branches', + 'issues/tracking-work', + // Small category (< threshold) + 'billing/managing-billing', + 'billing/viewing-usage', + // Excluded category + 'early-access/secret-feature', + // index slug + 'index', + ] + + const pages = makePages( + Object.fromEntries( + pagePaths.map((p) => [ + p, + { title: titleCase(p.split('/').pop() || p), intro: `Intro for ${p}.` }, + ]), + ), + ) + // Also add category-level pages for section headings + for (const cat of ['actions', 'copilot', 'repositories', 'issues', 'billing']) { + pages[`/en/${cat}`] = makePage({ + title: `${titleCase(cat)} documentation`, + intro: `About ${cat}.`, + }) + } + + // Add pinned pages so they appear + for (const pinned of PINNED_PAGES) { + pages[`/en/${pinned}`] = makePage({ + title: titleCase(pinned.split('/').pop() || pinned), + intro: `Pinned intro for ${pinned}.`, + }) + } + + const rollup = makeRollup( + pagePaths.filter((p) => p !== 'early-access/secret-feature' && p !== 'index'), + ) + + let output: string + + beforeAll(async () => { + output = await generate(pages, rollup) + }) + + test('generates without throwing', () => { + expect(output).toBeTruthy() + }) + + test('starts with the header', () => { + expect(output).toMatch(/^# GitHub\n/) + }) + + test('includes API section', () => { + expect(output).toContain('Programmatic access') + expect(output).toContain('/api/pagelist/') + expect(output).toContain('/api/article') + expect(output).toContain('/api/search') + }) + + test('includes pinned section', () => { + expect(output).toContain('Building with GitHub') + }) + + test('excludes early-access content', () => { + expect(output).not.toContain('secret-feature') + expect(output).not.toContain('early-access') + }) + + test('excludes index slug', () => { + // "index" as a standalone link should not appear + expect(output).not.toMatch(/\(https:\/\/docs\.github\.com\/en\/index\)/) + }) + + test('groups pages by category with headings', () => { + expect(output).toContain('## Actions') + expect(output).toContain('## Copilot') + expect(output).toContain('## Repositories') + }) + + test('small categories go under "More pages"', () => { + // Billing has 2 pages (< threshold of 3) + expect(output).toContain('## More pages') + expect(output).toContain('managing-billing') + }) + + test('categories are sorted by number of links (most first)', () => { + const actionsIdx = output.indexOf('## Actions') + const copilotIdx = output.indexOf('## Copilot') + // Actions has 4 pages, Copilot has 3 — Actions should come first + expect(actionsIdx).toBeLessThan(copilotIdx) + }) + + test('pages are sorted alphabetically within categories', () => { + // Extract all actions links in order + const actionLines = output + .split('\n') + .filter((line) => line.startsWith('- [') && line.includes('/en/actions/')) + const actionPaths = actionLines.map((l) => { + const match = l.match(/\/en\/actions\/([^)]+)/) + return match?.[1] || '' + }) + const sorted = [...actionPaths].sort() + expect(actionPaths).toEqual(sorted) + }) + + test('category headings strip " documentation" suffix', () => { + expect(output).not.toContain('## Actions documentation') + expect(output).toContain('## Actions') + }) + + test('category intros appear as blockquotes', () => { + expect(output).toContain('> About copilot.') + }) + + test('page lines include intros after colon', () => { + expect(output).toMatch(/\): Intro for actions\/overview\./) + }) + + test('ends with auto-update comment', () => { + expect(output.trim()).toMatch(/$/) + }) + + test('links point to docs.github.com', () => { + const links = output.match(/https:\/\/docs\.github\.com\/en\/[^\s)]+/g) || [] + expect(links.length).toBeGreaterThan(0) + for (const link of links) { + expect(link).toMatch(/^https:\/\/docs\.github\.com\/en\//) + } + }) +})