diff --git a/assets/images/help/organizations/security-overview-show-more-button.png b/assets/images/help/organizations/security-overview-show-more-button.png index 3ef14a15e3..a9f59f5893 100644 Binary files a/assets/images/help/organizations/security-overview-show-more-button.png and b/assets/images/help/organizations/security-overview-show-more-button.png differ diff --git a/assets/images/help/organizations/security-overview.png b/assets/images/help/organizations/security-overview.png index 552c57ed63..14b518a3be 100644 Binary files a/assets/images/help/organizations/security-overview.png and b/assets/images/help/organizations/security-overview.png differ diff --git a/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md b/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md index de2d414419..b169538ab0 100644 --- a/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md +++ b/content/admin/user-management/monitoring-activity-in-your-enterprise/audited-actions.md @@ -81,15 +81,15 @@ Name | Description {% endif %} -## Issues and pull requests +## Issues Action | Description ------------------------------------ | ----------------------------------------------------------- `issue.update` | An issue's body text (initial comment) changed. `issue_comment.update` | A comment on an issue (other than the initial one) changed. -`pull_request_review_comment.delete` | A comment on a pull request was deleted. `issue.destroy` | An issue was deleted from the repository. For more information, see "[Deleting an issue](/github/managing-your-work-on-github/deleting-an-issue)." + ## Organizations Action | Description @@ -98,6 +98,26 @@ Action | Description `org.delete` | An organization was deleted by a user-initiated background job.{% ifversion not ghae %} `org.transform` | A user account was converted into an organization. For more information, see "[Converting a user into an organization](/github/setting-up-and-managing-your-github-user-account/converting-a-user-into-an-organization)."{% endif %} +## Pull requests + +| Action | Description | +| :- | :- |{% ifversion ghes > 3.1 or ghae-next %} +| `pull_request.create` | A pull request was created. For more information, see "[Creating a pull request](/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request)." | +| `pull_request.close` | A pull request was closed without being merged. For more information, see "[Closing a pull request](/github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/closing-a-pull-request)." | +| `pull_request.reopen` | A pull request was reopened after previously being closed. | +| `pull_request.merge` | A pull request was merged. For more information, see "[Merging a pull request](/github/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/merging-a-pull-request)." | +| `pull_request.indirect_merge` | A pull request was considered merged because the pull request's commits were merged into the target branch. | +| `pull_request.ready_for_review` | A pull request was marked as ready for review. For more information, see "[Changing the stage of a pull request](/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#marking-a-pull-request-as-ready-for-review)." | +| `pull_request.converted_to_draft` | A pull request was converted to a draft. For more information, see "[Changing the stage of a pull request](/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#converting-a-pull-request-to-a-draft)." | +| `pull_request.create_review_request` | A review was requested on a pull request. For more information, see "[About pull request reviews](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews)." | +| `pull_request.remove_review_request` | A review request was removed from a pull request. For more information, see "[About pull request reviews](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews)." | +| `pull_request_review.submit` | A review was submitted for a pull request. For more information, see "[About pull request reviews](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews)." | +| `pull_request_review.dismiss` | A review on a pull request was dismissed. For more information, see "[Dismissing a pull request review](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/dismissing-a-pull-request-review)." | +| `pull_request_review.delete` | A review on a pull request was deleted. | +| `pull_request_review_comment.create` | A review comment was added to a pull request. For more information, see "[About pull request reviews](/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/about-pull-request-reviews)." | +| `pull_request_review_comment.update` | A review comment on a pull request was changed. |{% endif %} +| `pull_request_review_comment.delete` | A review comment on a pull request was deleted. | + ## Protected branches Action | Description diff --git a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md index e85ef9f002..59d76bbf59 100644 --- a/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md +++ b/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md @@ -267,7 +267,7 @@ jobs: ``` {% endif %} -{% ifversion fpt %} +{% ifversion fpt or ghes > 3.1 %} ## Configuring a category for the analysis Use `category` to distinguish between multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. The category you specify in your workflow will be included in the SARIF results file. @@ -286,7 +286,7 @@ This parameter is particularly useful if you work with monorepos and have multip ``` {% endraw %} -If you don't specify a `category` parameter in your workflow, {% data variables.product.prodname_dotcom %} will generate a category name for you, based on the name of the workflow file triggering the action, the action name, and any matrix variables. For example: +If you don't specify a `category` parameter in your workflow, {% data variables.product.product_name %} will generate a category name for you, based on the name of the workflow file triggering the action, the action name, and any matrix variables. For example: - The `.github/workflows/codeql-analysis.yml` workflow and the `analyze` action will produce the category `.github/workflows/codeql.yml:analyze`. - The `.github/workflows/codeql-analysis.yml` workflow, the `analyze` action, and the `{language: javascript, os: linux}` matrix variables will produce the category `.github/workflows/codeql-analysis.yml:analyze/language:javascript/os:linux`. diff --git a/content/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning.md b/content/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning.md index ab6d8ddfae..f144567d9c 100644 --- a/content/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning.md +++ b/content/code-security/code-scanning/integrating-with-code-scanning/sarif-support-for-code-scanning.md @@ -35,9 +35,8 @@ If you're using {% data variables.product.prodname_actions %} with the {% data v {% ifversion fpt or ghes > 3.0 or ghae-next %} If you're using the {% data variables.product.prodname_codeql_cli %}, then you can specify the version of SARIF to use. For more information, see "[Configuring {% data variables.product.prodname_codeql_cli %} in your CI system](/code-security/secure-coding/using-codeql-code-scanning-with-your-existing-ci-system/configuring-codeql-cli-in-your-ci-system#analyzing-a-codeql-database)."{% endif %} -{% ifversion fpt %} +{% ifversion fpt or ghes > 3.1 %} You can upload multiple SARIF files for the same tool and commit, and analyze each file using {% data variables.product.prodname_code_scanning %}. You can indicate a "category" for each analysis by specifying a `runAutomationDetails.id` in each file. Only SARIF files with the same category will overwrite each other. For more information about this property, see [`runAutomationDetails` object](#runautomationdetails-object) below. - {% endif %} {% data variables.product.prodname_dotcom %} uses properties in the SARIF file to display alerts. For example, the `shortDescription` and `fullDescription` appear at the top of a {% data variables.product.prodname_code_scanning %} alert. The `location` allows {% data variables.product.prodname_dotcom %} to show annotations in your code file. For more information, see "[Managing {% data variables.product.prodname_code_scanning %} alerts for your repository](/code-security/secure-coding/managing-code-scanning-alerts-for-your-repository)." @@ -140,7 +139,7 @@ A location within a programming artifact, such as a file in the repository or a | `region.endLine` | **Required.** The line number of the last character in the region. | `region.endColumn` | **Required.** The column number of the character following the end of the region. -{% ifversion fpt %} +{% ifversion fpt or ghes > 3.1 %} ### `runAutomationDetails` object The `runAutomationDetails` object contains information that specifies the identity of a run. @@ -244,7 +243,7 @@ This SARIF output file has example values to show the minimum required propertie This SARIF output file has example values to show all supported SARIF properties for {% data variables.product.prodname_code_scanning %}. -{% ifversion fpt %} +{% ifversion fpt or ghes > 3.1 %} ```json { "$schema": "https://raw.githubusercontent.com/oasis-tcs/sarif-spec/master/Schemata/sarif-schema-2.1.0.json", diff --git a/content/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/configuring-codeql-cli-in-your-ci-system.md b/content/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/configuring-codeql-cli-in-your-ci-system.md index 5f938f190a..427e89ca1c 100644 --- a/content/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/configuring-codeql-cli-in-your-ci-system.md +++ b/content/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/configuring-codeql-cli-in-your-ci-system.md @@ -143,7 +143,7 @@ $ codeql pack download <packs> ``` {% endif %} -3. Run `codeql database analyze` on the database and specify which {% if codeql-packs %}packs and/or{% endif %}queries to use. +3. Run `codeql database analyze` on the database and specify which {% if codeql-packs %}packs and/or {% endif %}queries to use. ```shell codeql database analyze <database> --format=<format> \ --output=<output> {% if codeql-packs %}<packs,queries>{% else %} <queries>{% endif %} diff --git a/content/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/configuring-codeql-runner-in-your-ci-system.md b/content/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/configuring-codeql-runner-in-your-ci-system.md index dfc901c13b..dbd2ecd093 100644 --- a/content/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/configuring-codeql-runner-in-your-ci-system.md +++ b/content/code-security/code-scanning/using-codeql-code-scanning-with-your-existing-ci-system/configuring-codeql-runner-in-your-ci-system.md @@ -190,7 +190,7 @@ Analyzes the code in the {% data variables.product.prodname_codeql %} databases | `--no-upload` | | None. Stops the {% data variables.product.prodname_codeql_runner %} from uploading the results to {% data variables.product.product_name %}. | | `--output-dir` | | Directory where the output SARIF files are stored. The default is in the directory of temporary files. | | `--ram` | | Amount of memory to use when running queries. The default is to use all available memory. | -| `--no-add-snippets` | | None. Excludes code snippets from the SARIF output. |{% ifversion fpt %} +| `--no-add-snippets` | | None. Excludes code snippets from the SARIF output. |{% ifversion fpt or ghes > 3.1 %} | `--category` | | Category to include in the SARIF results file for this analysis. A category can be used to distinguish multiple analyses for the same tool and commit, but performed on different languages or different parts of the code. This value will appear in the `.automationDetails.id` property in SARIF v2.1.0. |{% endif %} | `--threads` | | Number of threads to use when running queries. The default is to use all available cores. | | `--temp-dir` | | Directory where temporary files are stored. The default is `./codeql-runner`. | diff --git a/content/code-security/getting-started/securing-your-organization.md b/content/code-security/getting-started/securing-your-organization.md index 3ee738d00b..ccc63318b2 100644 --- a/content/code-security/getting-started/securing-your-organization.md +++ b/content/code-security/getting-started/securing-your-organization.md @@ -105,7 +105,7 @@ For more information, see "[Managing security and analysis settings for your org {% endif %} ## Next steps -{% ifversion fpt or ghae-next %}You can view, filter, and sort security alerts for repositories owned by your organization in the security overview. For more information, see "[Exploring security alerts](/code-security/security-overview/exploring-security-alerts)."{% endif %} +{% ifversion fpt or ghes > 3.1 or ghae-next %}You can view, filter, and sort security alerts for repositories owned by your organization in the security overview. For more information, see "[About the security overview](/code-security/security-overview/about-the-security-overview)."{% endif %} You can view and manage alerts from security features to address dependencies and vulnerabilities in your code. For more information, see {% ifversion fpt or ghes > 2.22 %} "[Viewing and updating vulnerable dependencies in your repository](/code-security/supply-chain-security/viewing-and-updating-vulnerable-dependencies-in-your-repository),"{% endif %} {% ifversion fpt %}"[Managing pull requests for dependency updates](/code-security/supply-chain-security/managing-pull-requests-for-dependency-updates)," {% endif %}"[Managing {% data variables.product.prodname_code_scanning %} for your repository](/code-security/secure-coding/managing-code-scanning-alerts-for-your-repository)," and "[Managing alerts from {% data variables.product.prodname_secret_scanning %}](/code-security/secret-security/managing-alerts-from-secret-scanning)." diff --git a/content/code-security/guides.md b/content/code-security/guides.md index c8e0f49ea1..e05346ff2d 100644 --- a/content/code-security/guides.md +++ b/content/code-security/guides.md @@ -52,7 +52,7 @@ includeGuides: - /code-security/security-advisories/publishing-a-security-advisory - /code-security/security-advisories/removing-a-collaborator-from-a-security-advisory - /code-security/security-advisories/withdrawing-a-security-advisory - - /code-security/security-overview/exploring-security-alerts + - /code-security/security-overview/about-the-security-overview - /code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/about-dependabot-version-updates - /code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/automating-dependabot-with-github-actions - /code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates diff --git a/content/code-security/security-overview/exploring-security-alerts.md b/content/code-security/security-overview/about-the-security-overview.md similarity index 71% rename from content/code-security/security-overview/exploring-security-alerts.md rename to content/code-security/security-overview/about-the-security-overview.md index ee6b83a0b6..1248eae1b1 100644 --- a/content/code-security/security-overview/exploring-security-alerts.md +++ b/content/code-security/security-overview/about-the-security-overview.md @@ -1,9 +1,12 @@ --- -title: Exploring security alerts -intro: 'You can view, filter, and sort security alerts for repositories owned by your organization or team in one place.' +title: About the security overview +intro: 'You can view, filter, and sort security alerts for repositories owned by your organization or team in one place: the Security Overview page.' product: '{% data reusables.gated-features.security-center %}' +redirect_from: + - /code-security/security-overview/exploring-security-alerts versions: fpt: '*' + ghes: '>3.1' ghae: next type: how_to topics: @@ -12,7 +15,7 @@ topics: - Alerts - Organizations - Teams -shortTitle: Explore security alerts +shortTitle: About security overview --- {% data reusables.security-center.beta %} @@ -21,13 +24,15 @@ shortTitle: Explore security alerts You can use the security overview for a high-level view of the security status of your organization or to identify problematic repositories that require intervention. At the organization-level, the security overview displays aggregate and repository-specific security information for repositories owned by your organization. At the team-level, the security overview displays repository-specific security information for repositories that the team has admin privileges for. For more information, see "[Managing team access to an organization repository](/organizations/managing-access-to-your-organizations-repositories/managing-team-access-to-an-organization-repository)." -The security overview indicates whether {% data variables.product.prodname_GH_advanced_security %} features are enabled for repositories owned by your organization and consolidates alerts from {% data variables.product.prodname_advanced_security %} features, including {% data variables.product.prodname_code_scanning %} alerts, {% data variables.product.prodname_dependabot_alerts %}, and {% data variables.product.prodname_secret_scanning %} alerts. For more information, see "[Securing your repository](/code-security/getting-started/securing-your-repository)" and "[Securing your organization](/code-security/getting-started/securing-your-organization)." +The security overview indicates whether {% ifversion fpt or ghes > 3.1 %}security{% endif %}{% ifversion ghae-next %}{% data variables.product.prodname_GH_advanced_security %}{% endif %} features are enabled for repositories owned by your organization and consolidates alerts for each feature.{% ifversion fpt or ghes > 3.1 %} Security features include {% data variables.product.prodname_GH_advanced_security %} features, such as {% data variables.product.prodname_code_scanning %} and {% data variables.product.prodname_secret_scanning %}, as well as {% data variables.product.prodname_dependabot_alerts %}.{% endif %} For more information about {% data variables.product.prodname_GH_advanced_security %} features, see "[About {% data variables.product.prodname_GH_advanced_security %}](/get-started/learning-about-github/about-github-advanced-security)."{% ifversion fpt or ghes > 3.1 %} For more information about {% data variables.product.prodname_dependabot_alerts %}, see "[About alerts for vulnerable dependencies](/code-security/supply-chain-security/managing-vulnerabilities-in-your-projects-dependencies/about-alerts-for-vulnerable-dependencies#dependabot-alerts-for-vulnerable-dependencies)."{% endif %} + +For more information about securing your code at the repository and organization levels, see "[Securing your repository](/code-security/getting-started/securing-your-repository)" and "[Securing your organization](/code-security/getting-started/securing-your-organization)." In the security overview, you can view, sort, and filter alerts to understand the security risks in your organization and in specific repositories. You can apply multiple filters to focus on areas of interest. For example, you can identify private repositories that have a high number of {% data variables.product.prodname_dependabot_alerts %} or repositories that have no {% data variables.product.prodname_code_scanning %} alerts. ![The security overview for an organization](/assets/images/help/organizations/security-overview.png) -For each repository in the security overview, you will see icons for each type of {% data variables.product.prodname_advanced_security %} feature and how many alerts there are of each type. If an {% data variables.product.prodname_advanced_security %} feature is not enabled for a repository, the icon for that feature will be grayed out. +For each repository in the security overview, you will see icons for each type of security feature and how many alerts there are of each type. If a security feature is not enabled for a repository, the icon for that feature will be grayed out. ![Icons in the security overview](/assets/images/help/organizations/security-overview-icons.png) @@ -36,12 +41,12 @@ For each repository in the security overview, you will see icons for each type o | {% octicon "code-square" aria-label="Code scanning alerts" %} | {% data variables.product.prodname_code_scanning_capc %} alerts. For more information, see "[About {% data variables.product.prodname_code_scanning %}](/code-security/secure-coding/about-code-scanning)." | | {% octicon "key" aria-label="Secret scanning alerts" %} | {% data variables.product.prodname_secret_scanning_caps %} alerts. For more information, see "[About {% data variables.product.prodname_secret_scanning %}](/code-security/secret-security/about-secret-scanning)." | | {% octicon "hubot" aria-label="Dependabot alerts" %} | {% data variables.product.prodname_dependabot_alerts %}. For more information, see "[About alerts for vulnerable dependencies](/code-security/supply-chain-security/about-alerts-for-vulnerable-dependencies)." | -| {% octicon "check" aria-label="Check" %} | The {% data variables.product.prodname_advanced_security %} feature is enabled, but does not raise alerts in this repository. | -| {% octicon "x" aria-label="x" %} | The {% data variables.product.prodname_advanced_security %} feature is not supported in this repository. | +| {% octicon "check" aria-label="Check" %} | The security feature is enabled, but does not raise alerts in this repository. | +| {% octicon "x" aria-label="x" %} | The security feature is not supported in this repository. | By default, archived repositories are excluded from the security overview for an organization. You can apply filters to view archived repositories in the security overview. For more information, see "[Filtering the list of alerts](#filtering-the-list-of-alerts)." -The security overview displays active alerts raised by {% data variables.product.prodname_GH_advanced_security %} features. If there are no alerts in the security overview for a repository, undetected security vulnerabilities or code errors may still exist. +The security overview displays active alerts raised by security features. If there are no alerts in the security overview for a repository, undetected security vulnerabilities or code errors may still exist. ## Viewing the security overview for an organization @@ -67,7 +72,7 @@ Members of a team can see the security overview for repositories that the team h ### Filter by level of risk for repositories -The level of risk for a repository is determined by the number and severity of alerts from {% data variables.product.prodname_advanced_security %} features. If one or more {% data variables.product.prodname_advanced_security %} features are not enabled for a repository, the repository will have an unknown level of risk. If a repository has no risks that are detected by {% data variables.product.prodname_advanced_security %} features, the repository will have a clear level of risk. +The level of risk for a repository is determined by the number and severity of alerts from security features. If one or more security features are not enabled for a repository, the repository will have an unknown level of risk. If a repository has no risks that are detected by security features, the repository will have a clear level of risk. | Qualifier | Description | | -------- | -------- | @@ -85,7 +90,7 @@ The level of risk for a repository is determined by the number and severity of a | secret-scanning-alerts:n | Display repositories that have *n* {% data variables.product.prodname_secret_scanning %} alerts. This qualifier can use > and < comparison operators. | | dependabot-alerts:n | Display repositories that have *n* {% data variables.product.prodname_dependabot_alerts %}. This qualifier can use > and < comparison operators. | -### Filter by whether {% data variables.product.prodname_advanced_security %} features are enabled +### Filter by whether security features are enabled | Qualifier | Description | | -------- | -------- | @@ -99,8 +104,8 @@ The level of risk for a repository is determined by the number and severity of a ### Filter by repository type | Qualifier | Description | -| -------- | -------- | -| `is:public` | Display public repositories. | +| -------- | -------- |{% ifversion fpt or ghes > 3.1 %} +| `is:public` | Display public repositories. |{% endif %} | `is:internal` | Display internal repositories. | | `is:private` | Display private repositories. | | `archived:true` | Display archived repositories. | diff --git a/content/code-security/security-overview/index.md b/content/code-security/security-overview/index.md index b20a70f5c3..d3f94a99a8 100644 --- a/content/code-security/security-overview/index.md +++ b/content/code-security/security-overview/index.md @@ -10,6 +10,6 @@ topics: - Security overview - Advanced Security children: - - /exploring-security-alerts + - /about-the-security-overview --- diff --git a/content/graphql/guides/introduction-to-graphql.md b/content/graphql/guides/introduction-to-graphql.md index da7eff2be5..62b4a3b0ee 100644 --- a/content/graphql/guides/introduction-to-graphql.md +++ b/content/graphql/guides/introduction-to-graphql.md @@ -117,9 +117,15 @@ GraphQL is [introspective](https://graphql.github.io/learn/introspection/). This ```shell $ curl -H "Authorization: bearer token" {% data variables.product.graphql_url_pre %} ``` + + {% note %} + **Note**: If you get the response `"message": "Bad credentials"` or `401 Unauthorized`, check that you are using a valid token. For more information, see "[Creating a personal access token](/github/authenticating-to-github/creating-a-personal-access-token)." + + {% endnote %} + The results are in JSON, so we recommend pretty-printing them for easier reading and searching. You can use a command-line tool like [jq](https://stedolan.github.io/jq/) or pipe the results into `python -m json.tool` for this purpose. - + Alternatively, you can pass the `idl` media type to return the results in IDL format, which is a condensed version of the schema: ```shell diff --git a/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md b/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md index ddd9d52087..f1f628511c 100644 --- a/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md +++ b/content/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization.md @@ -524,7 +524,8 @@ For more information, see "[Managing the publication of {% data variables.produc | `update_linear_history_requirement_enforcement_level ` | Triggered when required linear commit history is enabled or disabled for a protected branch. {% endif %} -{% ifversion fpt %} +{% ifversion fpt or ghes > 3.1 or ghae-next %} + ### `pull_request` category actions | Action | Description @@ -554,6 +555,7 @@ For more information, see "[Managing the publication of {% data variables.produc | `create` | Triggered when a review comment is added. | `update` | Triggered when a review comment is changed. | `delete` | Triggered when a review comment is deleted. + {% endif %} ### `repo` category actions diff --git a/content/rest/reference/code-scanning.md b/content/rest/reference/code-scanning.md index c3e2761549..3b16cdec49 100644 --- a/content/rest/reference/code-scanning.md +++ b/content/rest/reference/code-scanning.md @@ -1,5 +1,6 @@ --- title: Code scanning +intro: 'The Code Scanning API enables you to retrieve and update the code scanning alerts and analyses from a repository.' redirect_from: - /v3/code-scanning product: '{% data reusables.gated-features.code-scanning %}' diff --git a/content/rest/reference/codes-of-conduct.md b/content/rest/reference/codes-of-conduct.md index 47e0faea52..d5a6f5df4c 100644 --- a/content/rest/reference/codes-of-conduct.md +++ b/content/rest/reference/codes-of-conduct.md @@ -1,5 +1,6 @@ --- title: Codes of conduct +intro: "The Codes of Conduct API lets you to retreive the information about a particular respository's code of conduct." redirect_from: - /v3/codes_of_conduct - /v3/codes-of-conduct diff --git a/content/rest/reference/emojis.md b/content/rest/reference/emojis.md index d6bb4583ff..1db5d7aaca 100644 --- a/content/rest/reference/emojis.md +++ b/content/rest/reference/emojis.md @@ -1,5 +1,6 @@ --- title: Emojis +intro: 'With the Emojis API, you can list and view all the available emojis to use in {% data variables.product.product_name %}.' redirect_from: - /v3/emojis - /v3/misc diff --git a/content/rest/reference/enterprise-admin.md b/content/rest/reference/enterprise-admin.md index 38fa0d8fbb..d558888275 100644 --- a/content/rest/reference/enterprise-admin.md +++ b/content/rest/reference/enterprise-admin.md @@ -1,5 +1,6 @@ --- title: GitHub Enterprise administration +intro: 'You can use these endpoints to administer your enterprise. Among the tasks you can perform with this API are many relating to GitHub Actions.' allowTitleToDifferFromFilename: true redirect_from: - /v3/enterprise-admin @@ -14,8 +15,6 @@ miniTocMaxHeadingLevel: 3 shortTitle: Enterprise administration --- -You can use these endpoints to administer your enterprise. - {% ifversion fpt %} {% note %} diff --git a/content/rest/reference/gists.md b/content/rest/reference/gists.md index ff95b8b46e..920c709817 100644 --- a/content/rest/reference/gists.md +++ b/content/rest/reference/gists.md @@ -1,5 +1,6 @@ --- title: Gists +intro: 'The Gists API enables the authorized user to list, create, update and delete the public gists on {% data variables.product.product_name %}.' redirect_from: - /v3/gists versions: diff --git a/data/learning-tracks/code-security.yml b/data/learning-tracks/code-security.yml index db3cd34078..0531585805 100644 --- a/data/learning-tracks/code-security.yml +++ b/data/learning-tracks/code-security.yml @@ -68,7 +68,7 @@ security_alerts: title: 'Explore and manage security alerts' description: 'Learn where to find and resolve security alerts.' guides: - - /code-security/security-overview/exploring-security-alerts + - /code-security/security-overview/about-the-security-overview - '{% ifversion fpt %}/code-security/secret-security/managing-alerts-from-secret-scanning {% endif %}' - '{% ifversion fpt %}/code-security/secure-coding/automatically-scanning-your-code-for-vulnerabilities-and-errors/managing-code-scanning-alerts-for-your-repository{% endif %}' - '{% ifversion fpt %}/code-security/secure-coding/automatically-scanning-your-code-for-vulnerabilities-and-errors/triaging-code-scanning-alerts-in-pull-requests{% endif %}' diff --git a/lib/search/indexes/github-docs-2.22-cn-records.json.br b/lib/search/indexes/github-docs-2.22-cn-records.json.br index ad3c967c16..29614cac87 100644 --- a/lib/search/indexes/github-docs-2.22-cn-records.json.br +++ b/lib/search/indexes/github-docs-2.22-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d85cc69269c019a4d3695b770985fbe09a4297c67452901fee3b34865f726185 -size 563127 +oid sha256:90abf2a62a85fe55992624a3e2a7de52d0f03b9291dcc86ebbf9401a655f92ae +size 562801 diff --git a/lib/search/indexes/github-docs-2.22-cn.json.br b/lib/search/indexes/github-docs-2.22-cn.json.br index c71723f03b..a4fa3251c6 100644 --- a/lib/search/indexes/github-docs-2.22-cn.json.br +++ b/lib/search/indexes/github-docs-2.22-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dccab895fd1fd6473a7d5d9ec639798e54d9726aad92d94314feaefbafbdfc0b -size 1068991 +oid sha256:7210aa0c98ef45a349878a277ce83b032959cea2e852e24a63c4994de12ca853 +size 1067792 diff --git a/lib/search/indexes/github-docs-2.22-de-records.json.br b/lib/search/indexes/github-docs-2.22-de-records.json.br index 3572dbfc5e..3b6da40cdc 100644 --- a/lib/search/indexes/github-docs-2.22-de-records.json.br +++ b/lib/search/indexes/github-docs-2.22-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:685efd245a1389f3ea3867fa75db9b89aac9f84e63cca6062a47c2c2973129c4 -size 524263 +oid sha256:18740905ab1e1a0f3ac7c644d484130ed64a33ad5d11c5f5338d37d497b4d2ba +size 524469 diff --git a/lib/search/indexes/github-docs-2.22-de.json.br b/lib/search/indexes/github-docs-2.22-de.json.br index 529239e424..5da4524811 100644 --- a/lib/search/indexes/github-docs-2.22-de.json.br +++ b/lib/search/indexes/github-docs-2.22-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:19e92307a4746d6d6c3ee6bbb1537257cada9ee0b0686e8cb2936e5de3ae4a8d -size 2415955 +oid sha256:8a428a754189418caa5ad23420b11f866d05b2bb344acc2c5beff1133e966364 +size 2416180 diff --git a/lib/search/indexes/github-docs-2.22-en-records.json.br b/lib/search/indexes/github-docs-2.22-en-records.json.br index ba3bd80ec7..1cebbf9897 100644 --- a/lib/search/indexes/github-docs-2.22-en-records.json.br +++ b/lib/search/indexes/github-docs-2.22-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c661d89c82c90aae007ef495bee2971ced1c58896a8fea336e4d0af335cba4aa -size 740273 +oid sha256:bd2a5b32ccf436e4f907c3a92f5e995dcd7c38b9462c1dbc3708facd8fe8f530 +size 740310 diff --git a/lib/search/indexes/github-docs-2.22-en.json.br b/lib/search/indexes/github-docs-2.22-en.json.br index 136949207e..fbea534e87 100644 --- a/lib/search/indexes/github-docs-2.22-en.json.br +++ b/lib/search/indexes/github-docs-2.22-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3bd059032c6f475efdd9be1b87e4544a6d4bd6172a51f0193e2ca6b720665ff9 -size 3612637 +oid sha256:fd0b999b904f64da286095be4113c832e3464d54e280f1ce77198f3245cb8544 +size 3612113 diff --git a/lib/search/indexes/github-docs-2.22-es-records.json.br b/lib/search/indexes/github-docs-2.22-es-records.json.br index 91c473e432..b78115acb7 100644 --- a/lib/search/indexes/github-docs-2.22-es-records.json.br +++ b/lib/search/indexes/github-docs-2.22-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5a0efb992da18bcc179dba56f69d3c5fce1fada054172cf7923c18f7fb629cb2 -size 335617 +oid sha256:0f259ae350009b2537227b2f9e26ea6e78d8de20a1943eb178028c016ca513f0 +size 335640 diff --git a/lib/search/indexes/github-docs-2.22-es.json.br b/lib/search/indexes/github-docs-2.22-es.json.br index ecd637d171..0797fff2de 100644 --- a/lib/search/indexes/github-docs-2.22-es.json.br +++ b/lib/search/indexes/github-docs-2.22-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c8086a032edf2c70cc0efe8ac151cca9daa2f095e027d275b7fdc76525848acc -size 1383441 +oid sha256:0159fc186284d4aee474eae116aa2b21986fe790acac85599e6fe8a80a4667d2 +size 1383654 diff --git a/lib/search/indexes/github-docs-2.22-ja-records.json.br b/lib/search/indexes/github-docs-2.22-ja-records.json.br index 0ee5255c51..6b634c3848 100644 --- a/lib/search/indexes/github-docs-2.22-ja-records.json.br +++ b/lib/search/indexes/github-docs-2.22-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c2173541d80d441618839dbf6920c80352df7b549336e0ac889e589dfb635b1d -size 585410 +oid sha256:fd7f42c8664c2fc2bf4975af377f686592bf47806420aedc52f61a36a04941f3 +size 585412 diff --git a/lib/search/indexes/github-docs-2.22-ja.json.br b/lib/search/indexes/github-docs-2.22-ja.json.br index 1c20f5b148..e7982a3869 100644 --- a/lib/search/indexes/github-docs-2.22-ja.json.br +++ b/lib/search/indexes/github-docs-2.22-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e22c2a5eb801677b0cb64935ebd72629396db3587d28d3ba13bbf46ec454cf7 -size 3277289 +oid sha256:d82c525be0337312e6a0a48407a1eb61ee36ef55a41e03d2f20f71a14b284a1a +size 3277218 diff --git a/lib/search/indexes/github-docs-2.22-pt-records.json.br b/lib/search/indexes/github-docs-2.22-pt-records.json.br index 97062f3aa1..76b4f407c2 100644 --- a/lib/search/indexes/github-docs-2.22-pt-records.json.br +++ b/lib/search/indexes/github-docs-2.22-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b42af1a4e29136192f9f748efe39ec391a579ce03da52304353138c700fa182c -size 499703 +oid sha256:e265d5553ace17520b603ac8d193b6ed492df0206c0bcb120ca9cea3abc020e9 +size 499926 diff --git a/lib/search/indexes/github-docs-2.22-pt.json.br b/lib/search/indexes/github-docs-2.22-pt.json.br index 93cfac84d1..3bffbd061d 100644 --- a/lib/search/indexes/github-docs-2.22-pt.json.br +++ b/lib/search/indexes/github-docs-2.22-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:09b99ff668d46b138c4c0d1e582f93a0673f2dfb2e4569862dd8915cf37382c9 -size 2178904 +oid sha256:65617851eb872fb6a848d80813b7d6addab044041e95f3abb1afd29d44d22558 +size 2180424 diff --git a/lib/search/indexes/github-docs-3.0-cn-records.json.br b/lib/search/indexes/github-docs-3.0-cn-records.json.br index 23535699b9..eedf46379a 100644 --- a/lib/search/indexes/github-docs-3.0-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.0-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8dce5d6298ba11cd797e111f2a651053a57e1060b8bdbbbcd303236403cd458c -size 581106 +oid sha256:62a3a69c1a7deb37177f1bdd18a1810e9016499db1930c435f32cbfd4d88249b +size 581429 diff --git a/lib/search/indexes/github-docs-3.0-cn.json.br b/lib/search/indexes/github-docs-3.0-cn.json.br index 4019e02159..d9c7a6960e 100644 --- a/lib/search/indexes/github-docs-3.0-cn.json.br +++ b/lib/search/indexes/github-docs-3.0-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0cabb518ad1fe73cb5195e804649e08ed83e2b9e728a800dfbe8f1775bcf3e73 -size 1105275 +oid sha256:b134f3a62f94e0060d025ffe9f19b8feeb7f061861fdf7f98d93b54317a1184c +size 1105770 diff --git a/lib/search/indexes/github-docs-3.0-de-records.json.br b/lib/search/indexes/github-docs-3.0-de-records.json.br index 363c298b2e..994d0a300b 100644 --- a/lib/search/indexes/github-docs-3.0-de-records.json.br +++ b/lib/search/indexes/github-docs-3.0-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5084440ba3cf1a73a46692c6012e1b81aa8a2f537ddc9d7e430a6e71b48c49c3 -size 546296 +oid sha256:76def7699a2caf94d3b001e8ebd36edad7f8f1acf6cf0c477b3302871b6d3190 +size 546328 diff --git a/lib/search/indexes/github-docs-3.0-de.json.br b/lib/search/indexes/github-docs-3.0-de.json.br index 4dbd087b6c..58603ac5c1 100644 --- a/lib/search/indexes/github-docs-3.0-de.json.br +++ b/lib/search/indexes/github-docs-3.0-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0e099e44b03eb9822aee52dbeef845b5b17700d3e84ce69f101b83d4e98bc330 -size 2524163 +oid sha256:5839e9abb7eb9e9754d80e1a1e192f749412db369c2571add1291019798a5167 +size 2524683 diff --git a/lib/search/indexes/github-docs-3.0-en-records.json.br b/lib/search/indexes/github-docs-3.0-en-records.json.br index c901950bf7..f0e8fc5c4a 100644 --- a/lib/search/indexes/github-docs-3.0-en-records.json.br +++ b/lib/search/indexes/github-docs-3.0-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4a3a39da257135d53423ad90317a04a74d1bbf9c3aad6eeec225872ad82b5d24 -size 765542 +oid sha256:c4b1aa76839ece7159b21d69923956314f4afbd0355fbdad89f7a971480fc890 +size 764656 diff --git a/lib/search/indexes/github-docs-3.0-en.json.br b/lib/search/indexes/github-docs-3.0-en.json.br index 6ed2ae5cd8..a3ef93c862 100644 --- a/lib/search/indexes/github-docs-3.0-en.json.br +++ b/lib/search/indexes/github-docs-3.0-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95a54bd1162ca9b1696da3613a1fbbdc6310a205b07785321fdc7a0c98df23e3 -size 3749680 +oid sha256:3bee421c3bbacf5da31240913912ddee5538ecc5e57cbd416b3d0b07d35e31a3 +size 3746524 diff --git a/lib/search/indexes/github-docs-3.0-es-records.json.br b/lib/search/indexes/github-docs-3.0-es-records.json.br index 3eb9699c71..ffc19fc29e 100644 --- a/lib/search/indexes/github-docs-3.0-es-records.json.br +++ b/lib/search/indexes/github-docs-3.0-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c3cdc931c700890e2722e2753f07f56e762546e9988f27d16b72d3ad38ea9245 -size 334232 +oid sha256:d250c0122be3122e6a1651e28aa452bb4f82a2606a593ccd7909877933232d85 +size 334137 diff --git a/lib/search/indexes/github-docs-3.0-es.json.br b/lib/search/indexes/github-docs-3.0-es.json.br index ebb117a7aa..7ca2c24c5e 100644 --- a/lib/search/indexes/github-docs-3.0-es.json.br +++ b/lib/search/indexes/github-docs-3.0-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:047c89c32fb2c09ccacb622303d2957b19188ade34bbb686936a36c5a2e9ea02 -size 1373498 +oid sha256:cb1ba37efc183be189753e16be180201363978880a4301ac551a2fe3c1d627a0 +size 1373654 diff --git a/lib/search/indexes/github-docs-3.0-ja-records.json.br b/lib/search/indexes/github-docs-3.0-ja-records.json.br index f25f581aa6..11438497b4 100644 --- a/lib/search/indexes/github-docs-3.0-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.0-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2388186e166d30260b2ff778251ed025c03a4ceb5cee0923a26da36794d35510 -size 607157 +oid sha256:238c6bb397ef313c90d78f580caae910ab5d25e4abf0161347f946e0969d8598 +size 607109 diff --git a/lib/search/indexes/github-docs-3.0-ja.json.br b/lib/search/indexes/github-docs-3.0-ja.json.br index 499e124c09..0ab79ab7b3 100644 --- a/lib/search/indexes/github-docs-3.0-ja.json.br +++ b/lib/search/indexes/github-docs-3.0-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f471b836e3944f74276ede9c9ffe5611d37e26ca07807a35b3580bb9a61ecb2d -size 3401426 +oid sha256:3d01b147e7a905defd415f5c103fbef7bf514a1fcc9ee0b29390f35ca0b39b17 +size 3401003 diff --git a/lib/search/indexes/github-docs-3.0-pt-records.json.br b/lib/search/indexes/github-docs-3.0-pt-records.json.br index 0cb14913b0..c2b925c4f8 100644 --- a/lib/search/indexes/github-docs-3.0-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.0-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:90dc726b958ca4967575811d48011133774ff46e6875f6f7474b8aa7b9116463 -size 521959 +oid sha256:c62a05a6b5c4b94e6a077e9fb14b69b2f05bd90473517de40b33e84b0926d6dc +size 521993 diff --git a/lib/search/indexes/github-docs-3.0-pt.json.br b/lib/search/indexes/github-docs-3.0-pt.json.br index 1f86093b2d..172fcec1db 100644 --- a/lib/search/indexes/github-docs-3.0-pt.json.br +++ b/lib/search/indexes/github-docs-3.0-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a0ba6f5916e3418187c583d6d99068822b5f225b5f2356f1b027440c24dc26ed -size 2272449 +oid sha256:f36273788b84e4d2548d69a6c14605f3857732bb844244f8c5f273b08bd07142 +size 2271853 diff --git a/lib/search/indexes/github-docs-3.1-cn-records.json.br b/lib/search/indexes/github-docs-3.1-cn-records.json.br index 92f36a03a1..58f7ec91a4 100644 --- a/lib/search/indexes/github-docs-3.1-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.1-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2df4bb7eb317eb798afceb185880054f5df58fadfef55c69abd4c2150a8dc421 -size 592231 +oid sha256:ada11202c4740b0229f309c260182317ad0303b27c91deb42e9d2b01b4545205 +size 591798 diff --git a/lib/search/indexes/github-docs-3.1-cn.json.br b/lib/search/indexes/github-docs-3.1-cn.json.br index e1b698a6ce..dc25f1f5db 100644 --- a/lib/search/indexes/github-docs-3.1-cn.json.br +++ b/lib/search/indexes/github-docs-3.1-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a61e11a9dc023a3640b5f0d441101691906bc324ab526d66253c85e2c2c4779 -size 1123663 +oid sha256:50b5c3fc7c1ca57682edcc3045c6b87389bce17e1e109038be0f682f31353125 +size 1123457 diff --git a/lib/search/indexes/github-docs-3.1-de-records.json.br b/lib/search/indexes/github-docs-3.1-de-records.json.br index d88dedfb48..5b5fb054b8 100644 --- a/lib/search/indexes/github-docs-3.1-de-records.json.br +++ b/lib/search/indexes/github-docs-3.1-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b9637fa9ca1e4e9f0f2f34fc32d501a71c54cf098e5cc6c86477907214be364 -size 554713 +oid sha256:0cb5292b153dca351ed10543e037717743fd135e160a92948846089e27de11a8 +size 554931 diff --git a/lib/search/indexes/github-docs-3.1-de.json.br b/lib/search/indexes/github-docs-3.1-de.json.br index 01883f4038..9a02bd4f72 100644 --- a/lib/search/indexes/github-docs-3.1-de.json.br +++ b/lib/search/indexes/github-docs-3.1-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:94f463d68ce81e8cb376be3d262069f2fd8e0036c0623c659707267750c52f1b -size 2579123 +oid sha256:3cdf396e7008ece4516b8d094f300c41592c063c93f225922be24163af6ba09e +size 2578839 diff --git a/lib/search/indexes/github-docs-3.1-en-records.json.br b/lib/search/indexes/github-docs-3.1-en-records.json.br index f38c2764b7..fee5130d63 100644 --- a/lib/search/indexes/github-docs-3.1-en-records.json.br +++ b/lib/search/indexes/github-docs-3.1-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9122877f9b2056f01cc9b657d2f96821bfa02308ab61df71f976497c32b423c0 -size 779177 +oid sha256:82fd2a2be10107f3bc242b6a99a9697295f0c7ef4206e65053861417f3130235 +size 779996 diff --git a/lib/search/indexes/github-docs-3.1-en.json.br b/lib/search/indexes/github-docs-3.1-en.json.br index 59e9bce0d1..2737bcdf85 100644 --- a/lib/search/indexes/github-docs-3.1-en.json.br +++ b/lib/search/indexes/github-docs-3.1-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:755cfac9e32491881ed85fdedcf550fccfe84287f69708f8023fe5b8674e16ef -size 3828270 +oid sha256:a11027658f6f5a20d7aca16fe7be17bd5dc7414969021a4a62ab67e7d72649cb +size 3831549 diff --git a/lib/search/indexes/github-docs-3.1-es-records.json.br b/lib/search/indexes/github-docs-3.1-es-records.json.br index b01d6b1270..5e2a35cfd6 100644 --- a/lib/search/indexes/github-docs-3.1-es-records.json.br +++ b/lib/search/indexes/github-docs-3.1-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5fabd477ed2e1670d2801e1e30bec548db66addb568bb359f8c87e8674f5b954 -size 335082 +oid sha256:403204811d623e8141f8b5a5f0c1b2358229119615837ab6fb617d6b769b01e7 +size 334919 diff --git a/lib/search/indexes/github-docs-3.1-es.json.br b/lib/search/indexes/github-docs-3.1-es.json.br index f731a07ff2..83b364a302 100644 --- a/lib/search/indexes/github-docs-3.1-es.json.br +++ b/lib/search/indexes/github-docs-3.1-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:865ea04500097d6c5d5cca415f65a65d2affe3734d55db123e05b24a99c5fc7a -size 1378205 +oid sha256:020862d3b614b6425eb3a5e8030b61cb768639083cbb314e49fbfb3c1132c543 +size 1377416 diff --git a/lib/search/indexes/github-docs-3.1-ja-records.json.br b/lib/search/indexes/github-docs-3.1-ja-records.json.br index 71a09a82df..5ce4d01716 100644 --- a/lib/search/indexes/github-docs-3.1-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.1-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:97b8557d1ecfd6901f6432f86dc2d88046f7932d2210ed8c823f38a28a5e3a90 -size 617109 +oid sha256:b8893800aa79da2d61c8921863f235bd73405c677a204f7b7585b82101f60e0b +size 617252 diff --git a/lib/search/indexes/github-docs-3.1-ja.json.br b/lib/search/indexes/github-docs-3.1-ja.json.br index 8e552daa91..e7cc52e7ac 100644 --- a/lib/search/indexes/github-docs-3.1-ja.json.br +++ b/lib/search/indexes/github-docs-3.1-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:788d87df08475a57678dea897d910462d2b11699726bb975660a6fb8011fc0e2 -size 3468372 +oid sha256:28deb4313bf6a82fea7699457e9b96c0b8af7058313fa6e87355aabcb05c97a1 +size 3467467 diff --git a/lib/search/indexes/github-docs-3.1-pt-records.json.br b/lib/search/indexes/github-docs-3.1-pt-records.json.br index 9c5dae4819..3edaa5a1f7 100644 --- a/lib/search/indexes/github-docs-3.1-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.1-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a12e70eebd7c6815b40b702751be937748364ed40e55efe955e400886b81bd91 -size 530787 +oid sha256:a85a36d9e9ef95418c73962dc5e0cff0e6ea710c303440f2bb7fb9799922e324 +size 530927 diff --git a/lib/search/indexes/github-docs-3.1-pt.json.br b/lib/search/indexes/github-docs-3.1-pt.json.br index fade9c7196..2c88ebfa47 100644 --- a/lib/search/indexes/github-docs-3.1-pt.json.br +++ b/lib/search/indexes/github-docs-3.1-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:461ee67fa4a3fefa973be5e80f92eeca8452e53b58c4e879066b4b38994d0a61 -size 2317545 +oid sha256:454d1d136b2a6d40b421fd8bb1dabd235dc18be31976395dc73766f888c5b7d9 +size 2318383 diff --git a/lib/search/indexes/github-docs-dotcom-cn-records.json.br b/lib/search/indexes/github-docs-dotcom-cn-records.json.br index d4e1e38261..9139a49ae3 100644 --- a/lib/search/indexes/github-docs-dotcom-cn-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:68faef6ec08970ef7cf7a53fcf7876b8faaf80fd5826576803e03d534480d729 -size 783137 +oid sha256:ad3f875cab9cebee5c8ebfb444751a951cbfab45b81964bd908b4fcd21aa78b8 +size 782879 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index 7f4f8d176b..1614c3bcfc 100644 --- a/lib/search/indexes/github-docs-dotcom-cn.json.br +++ b/lib/search/indexes/github-docs-dotcom-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:255ab82909e08be2162adface8bd823d985053852c2f2ec49206c96eeb04dbc7 -size 1288647 +oid sha256:f0e97556dc1c4ee7067a1f7094a81d1a0eaac6b0e4a2a822e45a756f24136e01 +size 1288289 diff --git a/lib/search/indexes/github-docs-dotcom-de-records.json.br b/lib/search/indexes/github-docs-dotcom-de-records.json.br index 5ed54d34f9..5bf4a133cb 100644 --- a/lib/search/indexes/github-docs-dotcom-de-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1f41046d34c333210a5d367235930604e83130d657a5cbd31dfaf7421655b644 -size 718811 +oid sha256:a4a1be9745a694ac042993f4c3d02a2f14ed07e985ab6266679e8f8ccfae34f2 +size 719139 diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br index 39412f573b..7ac41cc9c2 100644 --- a/lib/search/indexes/github-docs-dotcom-de.json.br +++ b/lib/search/indexes/github-docs-dotcom-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:18a65e279ccb9bef6b0552d86d0c52ece147cd0a9a5acdd18c2084d294212444 -size 3322384 +oid sha256:0ac460fedb5f4ac03a4f1d574daa7791d247a7f5d51e04207157a7886d5cf462 +size 3322032 diff --git a/lib/search/indexes/github-docs-dotcom-en-records.json.br b/lib/search/indexes/github-docs-dotcom-en-records.json.br index 88016ff5de..550aed3b6e 100644 --- a/lib/search/indexes/github-docs-dotcom-en-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4cd662df13350dfd8c07823e570a5a811d86c93d91f6cf4bbbb7351685538b4 -size 1057328 +oid sha256:4491a22934c33a543c47e26b99402c23da58f580a8d6dce05eb807674ce59ee7 +size 1057100 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index 0bfb61fc62..8316842795 100644 --- a/lib/search/indexes/github-docs-dotcom-en.json.br +++ b/lib/search/indexes/github-docs-dotcom-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f37e326a87a7c70492cccdff1db2e7cae3a98e9faea559fc5aec467c9996bee2 -size 5120033 +oid sha256:0a9a611fe133326e0fa1a0748c05c4dfdcb542f8c72551f44d6e279b0a7904d5 +size 5116844 diff --git a/lib/search/indexes/github-docs-dotcom-es-records.json.br b/lib/search/indexes/github-docs-dotcom-es-records.json.br index 05035a69fd..e38fa0c5d4 100644 --- a/lib/search/indexes/github-docs-dotcom-es-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95fe7900fba11855250885a0fb45f526ef19b8cd055b546a566f14283bbb2e1a -size 370269 +oid sha256:5feb62a6018eb728acbc31dadebf6aa10fe732bddfc4c3a34c8a03ec78a10d2a +size 370394 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index 267b87c509..24b419baaf 100644 --- a/lib/search/indexes/github-docs-dotcom-es.json.br +++ b/lib/search/indexes/github-docs-dotcom-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a9fb4ba63a5bc788ac27d037ca0ddeabbf5126cf992b3321d808e8932c1bee84 -size 1437425 +oid sha256:65cb56b425ce24a791edb7c7fd4b88d1e495f26e4992f47bf1d8e8aaa19f371e +size 1438011 diff --git a/lib/search/indexes/github-docs-dotcom-ja-records.json.br b/lib/search/indexes/github-docs-dotcom-ja-records.json.br index 7d29f1d536..9d438d1d18 100644 --- a/lib/search/indexes/github-docs-dotcom-ja-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c392dbaa6557e1e8d1f7f9903ae4c6485b1fa0e85a9124416eabaa8684f5d6b -size 812090 +oid sha256:daf92a7de22f0c4b35610a804647da9b6c3b1331c656a835f4c4a1ea84fbfda9 +size 812060 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 383ebe03d4..c5bd3dee4f 100644 --- a/lib/search/indexes/github-docs-dotcom-ja.json.br +++ b/lib/search/indexes/github-docs-dotcom-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d28279d5ff182e8ab784b3bda93f6b7512c420c09a6c8b69e7b88906730db9f8 -size 4444322 +oid sha256:2512a357e1f5e8ff458b0213e1a0e8c2e8840b216a332ada6ef5bea9a47e8f55 +size 4443121 diff --git a/lib/search/indexes/github-docs-dotcom-pt-records.json.br b/lib/search/indexes/github-docs-dotcom-pt-records.json.br index 59457d0a40..1df86b5113 100644 --- a/lib/search/indexes/github-docs-dotcom-pt-records.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9985af9d5e499c87d0376ecb3194b52b987f4470eb17b0f4e7afa3491c9381bf -size 693964 +oid sha256:afdfb634b8b3e9e84341a36bf236b9930ae7c33b7b32692838f5e394ea4adad0 +size 694147 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index a0122d5692..a1fc6561c0 100644 --- a/lib/search/indexes/github-docs-dotcom-pt.json.br +++ b/lib/search/indexes/github-docs-dotcom-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3a431d31cec6b6bc491f3a68a4cd8fb3b409271f193747bbd7c41c08e4de632a -size 2961988 +oid sha256:34e99b4570f8b9e3ec726ea94e0f092927db0d7eff058f4eec3905bb4d63022e +size 2961971 diff --git a/lib/search/indexes/github-docs-ghae-cn-records.json.br b/lib/search/indexes/github-docs-ghae-cn-records.json.br index c98f62e48a..802528d2ce 100644 --- a/lib/search/indexes/github-docs-ghae-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghae-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4bfd0ac4204210e2a6bedb99372815dae911e0e43ef7e1530a3d643917c3aee1 -size 469054 +oid sha256:7efbf527a9cd119fe68e43988f086644a98a1cabb66790ce97728aa59b8a88ea +size 468877 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index 002d195e17..982d350771 100644 --- a/lib/search/indexes/github-docs-ghae-cn.json.br +++ b/lib/search/indexes/github-docs-ghae-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6ce1f3c482ea4252daefa21afd8ab9c656bacce45092b190dac34a69bced4b6f -size 898256 +oid sha256:d80d99e0a8dc58c5ca5507a30dbc766c5895e505d813ea100f4327fce8546d35 +size 897460 diff --git a/lib/search/indexes/github-docs-ghae-de-records.json.br b/lib/search/indexes/github-docs-ghae-de-records.json.br index c0d2a9f538..c7b95906ea 100644 --- a/lib/search/indexes/github-docs-ghae-de-records.json.br +++ b/lib/search/indexes/github-docs-ghae-de-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6335ca46e37afaff6dc01aa73be1f9d23e9cbd24ea492a0397d11143d4eb1c40 -size 445100 +oid sha256:0d6710d0baa6b19e586647db345e3d4bd363430068804520b2ab4a68db2b0212 +size 445090 diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br index 137c675dde..384cde14d2 100644 --- a/lib/search/indexes/github-docs-ghae-de.json.br +++ b/lib/search/indexes/github-docs-ghae-de.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a79088053669d0dc1d69c8a7502e03c11c3c1f96cd938b1c2558994b694aed60 -size 2030840 +oid sha256:e20331da3e27be39242f6dbc2f5fd442ff954b3e4860c478684277a19c98163f +size 2030536 diff --git a/lib/search/indexes/github-docs-ghae-en-records.json.br b/lib/search/indexes/github-docs-ghae-en-records.json.br index 0822cc6d56..de7e05c77f 100644 --- a/lib/search/indexes/github-docs-ghae-en-records.json.br +++ b/lib/search/indexes/github-docs-ghae-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1d1945fe8e5a1d235b7892cad46cf1edf04ab331c3b80ba565c2a56ed40d5174 -size 631737 +oid sha256:959f40a9264e92e943ef50e18123310c1b632cab04e1cdedbafa542de6402266 +size 632012 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index 37163e78b8..4b5be5bb34 100644 --- a/lib/search/indexes/github-docs-ghae-en.json.br +++ b/lib/search/indexes/github-docs-ghae-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9c3cfcb259b808e3493e63b985c4305a764a0d37c44e5d033f5817f13924afe6 -size 2998841 +oid sha256:f7d437ab85bc648074858c4088cfb061a4bb77f7647881c279a8942c01a2eb00 +size 3000458 diff --git a/lib/search/indexes/github-docs-ghae-es-records.json.br b/lib/search/indexes/github-docs-ghae-es-records.json.br index a6fea4526f..1219cac065 100644 --- a/lib/search/indexes/github-docs-ghae-es-records.json.br +++ b/lib/search/indexes/github-docs-ghae-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8ecee9e5c5e33f9a3abd15b41ccb0b4bc851cb3795fffadf03601c06fe32294a -size 256092 +oid sha256:16bac497de7fdc71e332fe9bfc4d9f40c3dc21b2bed8626bf4e1cd19f53d4eef +size 256024 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index af447c1be8..a6155d662d 100644 --- a/lib/search/indexes/github-docs-ghae-es.json.br +++ b/lib/search/indexes/github-docs-ghae-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:685d9523a05fba822e882edc6a8b110f8f6918ca0befea9bd23dfe267d3aef2c -size 1023539 +oid sha256:b6439375d915bdf05b59bf0a54f5de81c42c564edd05bf791a85acd0cd1158c4 +size 1022596 diff --git a/lib/search/indexes/github-docs-ghae-ja-records.json.br b/lib/search/indexes/github-docs-ghae-ja-records.json.br index 5f75aa28bb..ab3531a43f 100644 --- a/lib/search/indexes/github-docs-ghae-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghae-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c750713ddcb5a5d771e319bd75bb43c6f382df5bc2ea1afeb548aeff2042a3f3 -size 490385 +oid sha256:628c821e1f0108ef00f0cc250829e1437f8669f5fa02f35249b778750b9d5ea1 +size 490483 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index d742e26855..4f03426313 100644 --- a/lib/search/indexes/github-docs-ghae-ja.json.br +++ b/lib/search/indexes/github-docs-ghae-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a96a476c60919298191f5fe7899a31e048dd31954b8d7b5cf73781b99ef87e62 -size 2676546 +oid sha256:c5d467b077aaea1a3ed6d39f13f1f70530d2b5cd4214514ed66a6654ffe01857 +size 2676052 diff --git a/lib/search/indexes/github-docs-ghae-pt-records.json.br b/lib/search/indexes/github-docs-ghae-pt-records.json.br index 1c63b4c8cd..ab46fb20d9 100644 --- a/lib/search/indexes/github-docs-ghae-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghae-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:66bb5dd8b04ec5f9e553b2150f82e69c62df49d19216deababef6870c5e2fef3 -size 427659 +oid sha256:09253383978323c9d044ba683c31e8d17c3bd2065d73a3f63eab8b860f89f165 +size 427432 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index 55c4054b16..3987a8908c 100644 --- a/lib/search/indexes/github-docs-ghae-pt.json.br +++ b/lib/search/indexes/github-docs-ghae-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7780e3c2acc5dfb7583d1dff4529bbe3e0c902c27b131843885e866fe9ac9847 -size 1820572 +oid sha256:5d9d3b92e9e73cf135582c277f56e861f585469efad3834ad31a5ebef7c5b1eb +size 1820438