From 139ac575db299bfd7b7cdc887e4933346c11342d Mon Sep 17 00:00:00 2001 From: Lucas Costi Date: Mon, 6 Dec 2021 16:34:15 +1000 Subject: [PATCH 1/4] Add keyboard shortcut advice to the Style Guide (#23095) --- contributing/content-style-guide.md | 54 +++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/contributing/content-style-guide.md b/contributing/content-style-guide.md index 3aa581ab5c..5f0030ba84 100644 --- a/contributing/content-style-guide.md +++ b/contributing/content-style-guide.md @@ -170,6 +170,60 @@ More resources for learning about inclusive and accessible language and style: - [Readability Guidelines](https://readabilityguidelines.co.uk/) - [Conscious Style Guide](https://consciousstyleguide.com/) +## Keyboard shortcuts + +For presenting keyboard shortcuts, follow the [Microsoft Style Guide](https://docs.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/term-collections/keys-keyboard-shortcuts), **except for the following differences**: + +- Use the HTML `` tag for each individual key. + + - **Use:** `Command+B` + - **Avoid:** `Command+B` +- Use full words instead of symbols for Apple modifier keys. + + - **Use:** `Command` + - **Avoid:** `⌘` +- Use symbols for keys of special character, not full words. + + - **Use:** `.`, `,`, and `→`. + - **Avoid:** `Period`, `Comma`, and `Right arrow`. + +### Usage highlights + +Below are some usage highlights for how we present keyboard shortcuts in our documentation: + +- The basic syntax is to show keys with `+` between key combinations, without any spaces. + + - **Use:** `Command+B`, which is rendered as Command+B. + - **Avoid:** `Command + B` or `Command + B` which are rendered as Command + B or Command + B. +- Always capitalize letter keys for general references and keyboard shortcuts. + + - **Use:** Command+B + - **Avoid:** Command+b. +- Use the correct modifier keys for the each operating system. + + **Note:** Windows and Linux have Ctrl abbreviated, whereas on Mac it is spelled in full: Control. + + - For Windows and Linux: + + - **Use:** Ctrl, Alt. + - **Avoid:** Control + - For Mac: + + - **Use:** Command, Option, Control. + - **Avoid:** Cmd, , Opt, , Ctrl, +- Don't confuse key combinations with keys in a sequence. + + - Command+B indicates that the user should hold down the Command key and press the B key. + - G I indicates that the user should press the G key, then press the I key. +- When describing a keyboard shortcut for multiple operating systems, append the operating system in brackets after the shortcut. Describe the Mac shortcut first, then Windows/Linux. + + - **Use:** `Command+B (Mac) or Ctrl+B (Windows/Linux)`, presented as: + + Command+B (Mac) or Ctrl+B (Windows / Linux) + - **Avoid:** `Ctrl+B or Command+B`, presented as: + + Ctrl+B or Command+B + ## Linebreaks For plain text, use linebreaks to separate paragraphs in the source (two consecutive linebreaks), rather than to create visual space in the source. Avoid unneeded linebreaks, especially in lists. From 75d8f0e4278b0286c3a5a36002f8953fba5f2c12 Mon Sep 17 00:00:00 2001 From: Matt Pollard Date: Mon, 6 Dec 2021 10:01:46 +0100 Subject: [PATCH 2/4] Fix future broken link and versioning syntax for GitHub AE (#23347) --- .../managing-workflow-runs/skipping-workflow-runs.md | 2 +- .../security-hardening-for-github-actions.md | 6 +++--- .../audited-actions.md | 2 +- .../defining-custom-patterns-for-secret-scanning.md | 4 ++++ .../reviewing-the-audit-log-for-your-organization.md | 4 ++-- data/features/actions-runner-arch-envvars.yml | 2 +- data/features/keyboard-shortcut-accessibility-setting.yml | 2 +- data/reusables/actions/actions-audit-events-workflow.md | 6 +++--- 8 files changed, 16 insertions(+), 12 deletions(-) diff --git a/content/actions/managing-workflow-runs/skipping-workflow-runs.md b/content/actions/managing-workflow-runs/skipping-workflow-runs.md index 46385e5480..9171475df9 100644 --- a/content/actions/managing-workflow-runs/skipping-workflow-runs.md +++ b/content/actions/managing-workflow-runs/skipping-workflow-runs.md @@ -4,7 +4,7 @@ intro: You can skip workflow runs triggered by the `push` and `pull_request` eve versions: fpt: '*' ghes: '*' - ghae: ghae-next + ghae: next ghec: '*' shortTitle: Skip workflow runs --- diff --git a/content/actions/security-guides/security-hardening-for-github-actions.md b/content/actions/security-guides/security-hardening-for-github-actions.md index 60771903fb..52ed166394 100644 --- a/content/actions/security-guides/security-hardening-for-github-actions.md +++ b/content/actions/security-guides/security-hardening-for-github-actions.md @@ -331,19 +331,19 @@ The following tables describe the {% data variables.product.prodname_actions %} |------------------|------------------- | `enterprise.register_self_hosted_runner` | Triggered when a new self-hosted runner is registered. For more information, see "[Adding a self-hosted runner to an enterprise](/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-an-enterprise)." | `enterprise.remove_self_hosted_runner` | Triggered when a self-hosted runner is removed. -| `enterprise.runner_group_runners_updated` | Triggered when a runner group's member list is updated. For more information, see "[Set self-hosted runners in a group for an organization](/rest/reference/actions#set-self-hosted-runners-in-a-group-for-an-organization)."{% ifversion fpt or ghes > 3.1 or ghae-issue-1157 or ghec %} +| `enterprise.runner_group_runners_updated` | Triggered when a runner group's member list is updated. For more information, see "[Set self-hosted runners in a group for an organization](/rest/reference/actions#set-self-hosted-runners-in-a-group-for-an-organization)."{% ifversion fpt or ghes > 3.1 or ghae-next or ghec %} | `enterprise.self_hosted_runner_online` | Triggered when the runner application is started. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)." | `enterprise.self_hosted_runner_offline` | Triggered when the runner application is stopped. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)."{% endif %} | `enterprise.self_hosted_runner_updated` | Triggered when the runner application is updated. Can be viewed using the REST API and the UI. This event is not included when you export the audit log as JSON data or a CSV file. For more information, see "[About self-hosted runners](/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners)" and "[Reviewing the audit log for your organization](/organizations/keeping-your-organization-secure/reviewing-the-audit-log-for-your-organization#exporting-the-audit-log)." | `org.register_self_hosted_runner` | Triggered when a new self-hosted runner is registered. For more information, see "[Adding a self-hosted runner to an organization](/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-an-organization)." | `org.remove_self_hosted_runner` | Triggered when a self-hosted runner is removed. For more information, see [Removing a runner from an organization](/actions/hosting-your-own-runners/removing-self-hosted-runners#removing-a-runner-from-an-organization). | `org.runner_group_runners_updated` | Triggered when a runner group's list of members is updated. For more information, see "[Set self-hosted runners in a group for an organization](/rest/reference/actions#set-self-hosted-runners-in-a-group-for-an-organization)." -| `org.runner_group_updated` | Triggered when the configuration of a self-hosted runner group is changed. For more information, see "[Changing the access policy of a self-hosted runner group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group)."{% ifversion fpt or ghes > 3.1 or ghae-issue-1157 or ghec %} +| `org.runner_group_updated` | Triggered when the configuration of a self-hosted runner group is changed. For more information, see "[Changing the access policy of a self-hosted runner group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group)."{% ifversion fpt or ghes > 3.1 or ghae-next or ghec %} | `org.self_hosted_runner_online` | Triggered when the runner application is started. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)." | `org.self_hosted_runner_offline` | Triggered when the runner application is stopped. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)."{% endif %} | `org.self_hosted_runner_updated` | Triggered when the runner application is updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export. For more information, see "[About self-hosted runners](/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners)." | `repo.register_self_hosted_runner` | Triggered when a new self-hosted runner is registered. For more information, see "[Adding a self-hosted runner to a repository](/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository)." -| `repo.remove_self_hosted_runner` | Triggered when a self-hosted runner is removed. For more information, see "[Removing a runner from a repository](/actions/hosting-your-own-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository)."{% ifversion fpt or ghes > 3.1 or ghae-issue-1157 or ghec %} +| `repo.remove_self_hosted_runner` | Triggered when a self-hosted runner is removed. For more information, see "[Removing a runner from a repository](/actions/hosting-your-own-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository)."{% ifversion fpt or ghes > 3.1 or ghae-next or ghec %} | `repo.self_hosted_runner_online` | Triggered when the runner application is started. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)." | `repo.self_hosted_runner_offline` | Triggered when the runner application is stopped. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)."{% endif %} | `repo.self_hosted_runner_updated` | Triggered when the runner application is updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export. For more information, see "[About self-hosted runners](/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners)." 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 60bb98cb33..f7076a7ad1 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 @@ -197,7 +197,7 @@ Action | Description `user.two_factor_requested` | A user was prompted for a two-factor authentication code.{% endif %} `user.unsuspend` | A user account was unsuspended by a site admin. -{% ifversion ghes > 3.1 or ghae-issue-1157 %} +{% ifversion ghes > 3.1 or ghae-next %} ## Workflows {% data reusables.actions.actions-audit-events-workflow %} diff --git a/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md b/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md index e4cde2b237..ed23e51702 100644 --- a/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md +++ b/content/code-security/secret-scanning/defining-custom-patterns-for-secret-scanning.md @@ -82,8 +82,12 @@ After your pattern is created, {% data variables.product.prodname_secret_scannin ## Defining a custom pattern for an enterprise account +{% ifversion fpt or ghec or ghes %} + Before defining a custom pattern, you must ensure that you enable secret scanning for your enterprise account. For more information, see "[Enabling {% data variables.product.prodname_GH_advanced_security %} for your enterprise]({% ifversion fpt or ghec %}/enterprise-server@latest/{% endif %}/admin/advanced-security/enabling-github-advanced-security-for-your-enterprise)." +{% endif %} + {% note %} **Note:** As there is no dry-run functionality, we recommend that you test your custom patterns in a repository before defining them for your entire enterprise. That way, you can avoid creating excess false-positive {% data variables.product.prodname_secret_scanning %} alerts. 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 3765400734..0d23b4dbc8 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 @@ -434,7 +434,7 @@ For more information, see "[Managing the publication of {% data variables.produc | `runner_group_updated` | Triggered when the configuration of a self-hosted runner group is changed. For more information, see "[Changing the access policy of a self-hosted runner group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#changing-the-access-policy-of-a-self-hosted-runner-group)." | `runner_group_runners_added` | Triggered when a self-hosted runner is added to a group. For more information, see [Moving a self-hosted runner to a group](/actions/hosting-your-own-runners/managing-access-to-self-hosted-runners-using-groups#moving-a-self-hosted-runner-to-a-group). | `runner_group_runner_removed` | Triggered when the REST API is used to remove a self-hosted runner from a group. For more information, see "[Remove a self-hosted runner from a group for an organization](/rest/reference/actions#remove-a-self-hosted-runner-from-a-group-for-an-organization)." -| `runner_group_runners_updated`| Triggered when a runner group's list of members is updated. For more information, see "[Set self-hosted runners in a group for an organization](/rest/reference/actions#set-self-hosted-runners-in-a-group-for-an-organization)."{% ifversion fpt or ghes > 3.1 or ghae-issue-1157 or ghec %} +| `runner_group_runners_updated`| Triggered when a runner group's list of members is updated. For more information, see "[Set self-hosted runners in a group for an organization](/rest/reference/actions#set-self-hosted-runners-in-a-group-for-an-organization)."{% ifversion fpt or ghes > 3.1 or ghae-next or ghec %} | `self_hosted_runner_online` | Triggered when the runner application is started. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)." | `self_hosted_runner_offline` | Triggered when the runner application is stopped. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)."{% endif %}{% ifversion fpt or ghes or ghec %} | `self_hosted_runner_updated` | Triggered when the runner application is updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export. For more information, see "[About self-hosted runners](/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners)."{% endif %}{% ifversion fpt or ghec %} @@ -605,7 +605,7 @@ For more information, see "[Managing the publication of {% data variables.produc | `register_self_hosted_runner` | Triggered when a new self-hosted runner is registered. For more information, see "[Adding a self-hosted runner to a repository](/actions/hosting-your-own-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository)." | `remove_self_hosted_runner` | Triggered when a self-hosted runner is removed. For more information, see "[Removing a runner from a repository](/actions/hosting-your-own-runners/removing-self-hosted-runners#removing-a-runner-from-a-repository)." | `remove_topic` | Triggered when a repository admin removes a topic from a repository. -| `rename` | Triggered when [a repository is renamed](/articles/renaming-a-repository).{% ifversion fpt or ghes > 3.1 or ghae-issue-1157 or ghec %} +| `rename` | Triggered when [a repository is renamed](/articles/renaming-a-repository).{% ifversion fpt or ghes > 3.1 or ghae-next or ghec %} | `self_hosted_runner_online` | Triggered when the runner application is started. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)." | `self_hosted_runner_offline` | Triggered when the runner application is stopped. Can only be viewed using the REST API; not visible in the UI or JSON/CSV export. For more information, see "[Checking the status of a self-hosted runner](/actions/hosting-your-own-runners/monitoring-and-troubleshooting-self-hosted-runners#checking-the-status-of-a-self-hosted-runner)."{% endif %}{% ifversion fpt or ghes or ghec %} | `self_hosted_runner_updated` | Triggered when the runner application is updated. Can be viewed using the REST API and the UI; not visible in the JSON/CSV export. For more information, see "[About self-hosted runners](/actions/hosting-your-own-runners/about-self-hosted-runners#about-self-hosted-runners)."{% endif %}{% ifversion fpt or ghec %} diff --git a/data/features/actions-runner-arch-envvars.yml b/data/features/actions-runner-arch-envvars.yml index 982f5403c2..0691aef2dd 100644 --- a/data/features/actions-runner-arch-envvars.yml +++ b/data/features/actions-runner-arch-envvars.yml @@ -4,4 +4,4 @@ versions: fpt: '*' ghec: '*' ghes: '>=3.4' - ghae: 'ghae-issue-5727' + ghae: 'issue-5727' diff --git a/data/features/keyboard-shortcut-accessibility-setting.yml b/data/features/keyboard-shortcut-accessibility-setting.yml index f5ac118b98..df13e39e00 100644 --- a/data/features/keyboard-shortcut-accessibility-setting.yml +++ b/data/features/keyboard-shortcut-accessibility-setting.yml @@ -3,5 +3,5 @@ versions: fpt: '*' ghes: '>=3.4' - ghae: 'ghae-issue-5430' + ghae: 'issue-5430' ghec: '*' diff --git a/data/reusables/actions/actions-audit-events-workflow.md b/data/reusables/actions/actions-audit-events-workflow.md index 1ffe0a0cbc..4b0304997e 100644 --- a/data/reusables/actions/actions-audit-events-workflow.md +++ b/data/reusables/actions/actions-audit-events-workflow.md @@ -1,12 +1,12 @@ | Action | Description -|------------------|-------------------{% ifversion fpt or ghes > 3.1 or ghae-issue-1157 or ghec %} +|------------------|-------------------{% ifversion fpt or ghes > 3.1 or ghae-next or ghec %} | `cancel_workflow_run` | Triggered when a workflow run has been cancelled. For more information, see "[Canceling a workflow](/actions/managing-workflow-runs/canceling-a-workflow)."{% endif %}{% ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4963 %} | `completed_workflow_run` | Triggered when a workflow status changes to `completed`. Can only be viewed using the REST API; not visible in the UI or the JSON/CSV export. For more information, see "[Viewing workflow run history](/actions/managing-workflow-runs/viewing-workflow-run-history)."{% endif %}{% ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4963 %} -| `created_workflow_run` | Triggered when a workflow run is created. Can only be viewed using the REST API; not visible in the UI or the JSON/CSV export. For more information, see "[Create an example workflow](/actions/learn-github-actions/introduction-to-github-actions#create-an-example-workflow)."{% endif %}{% ifversion fpt or ghes > 3.1 or ghae-issue-1157 or ghec %} +| `created_workflow_run` | Triggered when a workflow run is created. Can only be viewed using the REST API; not visible in the UI or the JSON/CSV export. For more information, see "[Create an example workflow](/actions/learn-github-actions/introduction-to-github-actions#create-an-example-workflow)."{% endif %}{% ifversion fpt or ghes > 3.1 or ghae-next or ghec %} | `delete_workflow_run` | Triggered when a workflow run is deleted. For more information, see "[Deleting a workflow run](/actions/managing-workflow-runs/deleting-a-workflow-run)." | `disable_workflow` | Triggered when a workflow is disabled. | `enable_workflow` | Triggered when a workflow is enabled, after previously being disabled by `disable_workflow`. | `rerun_workflow_run` | Triggered when a workflow run is re-run. For more information, see "[Re-running a workflow](/actions/managing-workflow-runs/re-running-a-workflow)."{% endif %}{% ifversion fpt or ghec or ghes > 3.2 or ghae-issue-4963 %} -| `prepared_workflow_job` | Triggered when a workflow job is started. Includes the list of secrets that were provided to the job. Can only be viewed using the REST API. It is not visible in the the {% data variables.product.prodname_dotcom %} web interface or included in the JSON/CSV export. For more information, see "[Events that trigger workflows](/actions/reference/events-that-trigger-workflows)."{% endif %}{% ifversion fpt or ghes > 3.1 or ghae-issue-1157 or ghec %} +| `prepared_workflow_job` | Triggered when a workflow job is started. Includes the list of secrets that were provided to the job. Can only be viewed using the REST API. It is not visible in the the {% data variables.product.prodname_dotcom %} web interface or included in the JSON/CSV export. For more information, see "[Events that trigger workflows](/actions/reference/events-that-trigger-workflows)."{% endif %}{% ifversion fpt or ghes > 3.1 or ghae-next or ghec %} | `approve_workflow_job` | Triggered when a workflow job has been approved. For more information, see "[Reviewing deployments](/actions/managing-workflow-runs/reviewing-deployments)." | `reject_workflow_job` | Triggered when a workflow job has been rejected. For more information, see "[Reviewing deployments](/actions/managing-workflow-runs/reviewing-deployments)."{% endif %} From a547d7946119f65d8ec1ba0b9b54a0b53fcff93a Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Mon, 6 Dec 2021 10:17:30 +0000 Subject: [PATCH 3/4] update search indexes --- lib/search/indexes/github-docs-3.0-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.0-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.1-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.2-pt.json.br | 4 ++-- lib/search/indexes/github-docs-3.3-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.3-cn.json.br | 4 ++-- lib/search/indexes/github-docs-3.3-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.3-en.json.br | 4 ++-- lib/search/indexes/github-docs-3.3-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.3-es.json.br | 4 ++-- lib/search/indexes/github-docs-3.3-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.3-ja.json.br | 4 ++-- lib/search/indexes/github-docs-3.3-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-3.3-pt.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-cn.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-en.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-es.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-ja.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-dotcom-pt.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-cn.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-en.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-es.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-ja.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghae-pt.json.br | 4 ++-- lib/search/indexes/github-docs-ghec-cn-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghec-cn.json.br | 4 ++-- lib/search/indexes/github-docs-ghec-en-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghec-en.json.br | 4 ++-- lib/search/indexes/github-docs-ghec-es-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghec-es.json.br | 4 ++-- lib/search/indexes/github-docs-ghec-ja-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghec-ja.json.br | 4 ++-- lib/search/indexes/github-docs-ghec-pt-records.json.br | 4 ++-- lib/search/indexes/github-docs-ghec-pt.json.br | 4 ++-- 70 files changed, 140 insertions(+), 140 deletions(-) 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 bde27acbc8..be9dce45b8 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:03ac8e6177349ecbfd990aeb01ad93e9e80018432bd830d9479bf929ab3814e3 -size 628773 +oid sha256:cee20618e5b14c6f6e32d938bf8d8a1a4776070bcc1a88b1114429282737af10 +size 628982 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 98792d5026..6afbcf3c36 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:87f464204c9f6958506b2eb2008402ef0e327086d6aa90a0ddeeeb1c3c5a4bbb -size 1353773 +oid sha256:dbc21d8c84819094d4004a365970d8b540e1dd1782d2d43f0a05ee68fab0a6d0 +size 1352673 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 de544c8d1d..c0abd42dfe 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:b348ddc067724c379bb75e25da6265dc0515cc0c11d1b0181ea72868afd24ebf -size 947573 +oid sha256:ee0a82f33ed777035216f087cefec67c1bc50427659b861ac04a77e1d641c3d6 +size 947781 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 9ea8e95e77..435894e24d 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:364827390d7b573b07244f9e48a0763ac867e3c2545a5825975ec91ed9561618 -size 3867972 +oid sha256:62a34d83a7b689d97bc6a45299c818f54fe181c6d28c66169ed1d5f4a8f21860 +size 3867691 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 c727441ce4..21604b68c5 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:d774ed8b80e665b1858cc13438e95324ac8189a6c8db883f6d97323d7fd8ef2a -size 593420 +oid sha256:586d842e4e65b65439af5ef9f000eafa8d50eb6f0d84e5676a6b7f1846093b1b +size 593495 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 5951dbcc71..bdea8ae433 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:6ec76d2c6b2b71e46b09bb709d706d5061e715b175d2b4b3f79c56ed7f4c1eb6 -size 2609780 +oid sha256:83dd3ef951a0912c1783041815301c95bd438fc5eb7d6563b5768ac870cd753f +size 2610223 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 f36922ef2b..58f2591f8d 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:e2ff5e0f962ce2834bc8fe268cbf10f7c5a0832ca0f2c3a959acbb6b0eecfef3 -size 644868 +oid sha256:b03e1337c373946cef6fba0f2e86321e4bba8056cea1af16c5b54f84d5ebd4f8 +size 644857 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 fb3cd214e4..7227f43338 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:c2abecae6f58a6ab60d287904e93d4aa0a0e75abf7d42e158ef017c6e71f5c67 -size 3416524 +oid sha256:ed0c15b5edce1aa698c13f07d95f83ef5ea8cb73b8c9e32a343b925ab17c0fd1 +size 3416553 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 73236a1c5e..d5cae9c52f 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:aac67f3917d1dc08c2434bcc7790d5c34a9e1cc8ca59bf78777a44af1304c4da -size 590553 +oid sha256:a439a3c49796245f0196884aa9f2ed414770e5185badd80d45b5a03e10cd2357 +size 590496 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 777fa46928..5d3ce084cf 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:ff79580afc017dd5be3ce6b165bd8eded992e9b2d0445777706b2277be583345 -size 2496860 +oid sha256:1e5302166f236df687f2b0b4f4dae9a10258ac0e487029aea1e353efc6fda0d5 +size 2496384 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 afbed29486..b3ff048034 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:b7177f9592a881d8cd5d6abdb91e8a7a3d0769add4580a2d5b3681cefd27370a -size 642179 +oid sha256:07b39df9cd80fc2b414ead764de1032d87042961c5c0c55030afb4d8bf4429d0 +size 641999 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 d5339b8086..78d7a8e4ba 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:f74a6580fe7e999fdbd83d026844046e34c5662f87293340c8d15a698660ab32 -size 1389828 +oid sha256:a6553423aa176c69ab4fb8b674ddcf66bc891421d261194a9777e6d30bc06731 +size 1389533 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 acc375ea51..93fb2ce02a 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:0ebc40ace5b98c2c99f6c3eb23feb6e4ee05488530dea28d3e14a7ca636dde60 -size 972147 +oid sha256:a0f6841032127c368cbac4d018b792e5deea054c1f07727cce8716b3a2958e98 +size 972363 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 ffcf7c81db..6756a981f0 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:c95b63bab3b8243431de37b17b20f9cc95c353ac6466ff64c3b33a2ba6672fac -size 3959046 +oid sha256:ca64c772d117ae35f16045845a8ea36f1834447dfe5bfe632cc367da536b47f6 +size 3959063 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 acd7521de0..d0cb20b9bd 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:2cfca54c731575eafe28431beb29769d7cdfaf37755186c1d3f1001003729203 -size 605918 +oid sha256:d801b067431b3e8dfa4c6cd766cffb831497b1b2cd1eef00a9323e417da503d0 +size 606076 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 6d2cd93718..bfbb27d910 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:111e6616cd51d4a3490bdc6aeaa731416422c777ea0a7d49df26410a1d2fe073 -size 2669296 +oid sha256:90237851a8f5c6dcf49f63e4d9a2f20850cd5b1da401769cbf87f75eb80bf131 +size 2669625 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 0febc56ca5..63d2e9c290 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:8e8a8a26991a5862f00c8b7990adb12bdd4390cf6f6e04afce45ece1c7d04418 -size 658600 +oid sha256:16ba2dc7527053081c6b8c9b6c019db15f7644928c8d68e50c11cf8af1ac3f1c +size 658422 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 8b6add8ff9..9079ca4adc 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:452d42994cd027cc300ac85f99f929d6ef5f6cb1fe541dbd98f00ef440718b66 -size 3495115 +oid sha256:4d6ac6264532c497fd35757de4c92da84d431a53b4fddbce98468da83d26c515 +size 3495160 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 555966686c..bee162c831 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:49d64f609165dac82edf4d84342526164da13b6d6e2ed54d9f4b985ff3324f12 -size 603011 +oid sha256:d55372f8b9e06bd7f67011088273e956661d9a37c301fde09e74818ea9f995f8 +size 603125 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 6967faba65..233dc25137 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:2a1ff7c51ecdb45cdf2885ab64a3905ab7b08ec28b92b46e01d053a70f367211 -size 2551936 +oid sha256:62e1698a76f17f7c32224e315d50546ee976d7716fae53d858f6e973b7619439 +size 2552103 diff --git a/lib/search/indexes/github-docs-3.2-cn-records.json.br b/lib/search/indexes/github-docs-3.2-cn-records.json.br index ad7b03e648..abf1a86767 100644 --- a/lib/search/indexes/github-docs-3.2-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.2-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:93f0cf86331319bcadd9b750d0e6a0b616467d8286d42c75879000e53dd50e6d -size 654264 +oid sha256:ca63831385234d91257b655e1100949511659a85f58caf56bdc6f78cd98b5fbb +size 654396 diff --git a/lib/search/indexes/github-docs-3.2-cn.json.br b/lib/search/indexes/github-docs-3.2-cn.json.br index 47c2cc7792..7426ebfe16 100644 --- a/lib/search/indexes/github-docs-3.2-cn.json.br +++ b/lib/search/indexes/github-docs-3.2-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1bb87996524dfe65c5e0c3f502ef8eb71440aea657115588e5fad4943ee43247 -size 1415988 +oid sha256:0f69eaa820268ce18a42aa94cf654566a6cae24494068da8b3b02aa6fbba82fb +size 1416174 diff --git a/lib/search/indexes/github-docs-3.2-en-records.json.br b/lib/search/indexes/github-docs-3.2-en-records.json.br index 2c83d39f4e..5720f292e0 100644 --- a/lib/search/indexes/github-docs-3.2-en-records.json.br +++ b/lib/search/indexes/github-docs-3.2-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5cae12bce7a05f95a73118dda8649f0bf64ecfd65549bbaea0020459c3393029 -size 1002969 +oid sha256:eb3cbc416c81fab4cff84c37e931fd7f796abdd63b49a6aa46aa53ad138e0dc7 +size 1002743 diff --git a/lib/search/indexes/github-docs-3.2-en.json.br b/lib/search/indexes/github-docs-3.2-en.json.br index fd442acbab..24b71aa336 100644 --- a/lib/search/indexes/github-docs-3.2-en.json.br +++ b/lib/search/indexes/github-docs-3.2-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c8034a19c98711c5b74e1df68d7eec08cb3c9458967b9ceed6b78f7befa3a603 -size 4079655 +oid sha256:083eea2d9a4149c0e0751b0e9be8d261fbdc661425b9091071b2e2d285b4b02b +size 4078829 diff --git a/lib/search/indexes/github-docs-3.2-es-records.json.br b/lib/search/indexes/github-docs-3.2-es-records.json.br index dd37c16f5c..02ac519f02 100644 --- a/lib/search/indexes/github-docs-3.2-es-records.json.br +++ b/lib/search/indexes/github-docs-3.2-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a5b83c7e5c838344622438710c2a5760334142eca94a5789b7c162e5b4959f0a -size 616631 +oid sha256:651460c02366c868009591b084aede2552e42ce1a8bfd451bd852d19cae30ba9 +size 616668 diff --git a/lib/search/indexes/github-docs-3.2-es.json.br b/lib/search/indexes/github-docs-3.2-es.json.br index 62f159c6ff..0b88faee35 100644 --- a/lib/search/indexes/github-docs-3.2-es.json.br +++ b/lib/search/indexes/github-docs-3.2-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:05fddc6351205326c5921472bc6c12bcf95a8859afe4f482ca617649a939bfe8 -size 2723961 +oid sha256:8475c8297d1b91aa550c803dedd756a6c54e249db930c3d0b8052993cc63ce8a +size 2723978 diff --git a/lib/search/indexes/github-docs-3.2-ja-records.json.br b/lib/search/indexes/github-docs-3.2-ja-records.json.br index 17c4625700..699f960ab1 100644 --- a/lib/search/indexes/github-docs-3.2-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.2-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3fb7d0dab46c80005c72c77a0e80263906c1d19ac025b7513050d8a65537380d -size 670019 +oid sha256:54019160fec4cfbcb52cc614512532514ba733ea30c54cd2eb5392452a808795 +size 670256 diff --git a/lib/search/indexes/github-docs-3.2-ja.json.br b/lib/search/indexes/github-docs-3.2-ja.json.br index 49f4ed48a5..80f94b6dd8 100644 --- a/lib/search/indexes/github-docs-3.2-ja.json.br +++ b/lib/search/indexes/github-docs-3.2-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3d69f4cf87708ebd4743a16753d838d0e3f69e892b0d5ac4d98852d753632445 -size 3561622 +oid sha256:aff2fc0b1fc521a9ed2842c53b262e281cb7787c94c5562711ca34d995bc859e +size 3562368 diff --git a/lib/search/indexes/github-docs-3.2-pt-records.json.br b/lib/search/indexes/github-docs-3.2-pt-records.json.br index 53df040233..3d62f5979d 100644 --- a/lib/search/indexes/github-docs-3.2-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.2-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ad6d8e03c66fed16c23e2ea75bba1d4c385a03a07006a1ffeefa3cc35a0a011e -size 613873 +oid sha256:218b0d60a2d7eb7c0748ef10c70ed7c2ba23f46ddaf79649a4571f46838ceeb8 +size 613961 diff --git a/lib/search/indexes/github-docs-3.2-pt.json.br b/lib/search/indexes/github-docs-3.2-pt.json.br index f4a9d87c1f..46c44061d7 100644 --- a/lib/search/indexes/github-docs-3.2-pt.json.br +++ b/lib/search/indexes/github-docs-3.2-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9d27519ef45e3042a4ebb6944cd83b49d1cb537339d33c59d9989245de30bc37 -size 2599969 +oid sha256:680fb5b4483709753b6c6f395cb5d29a5a03b4f7f3b9fe6fec59c033cb2b6caf +size 2599839 diff --git a/lib/search/indexes/github-docs-3.3-cn-records.json.br b/lib/search/indexes/github-docs-3.3-cn-records.json.br index e359afdfa5..50b7820c1a 100644 --- a/lib/search/indexes/github-docs-3.3-cn-records.json.br +++ b/lib/search/indexes/github-docs-3.3-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d7f49cd7232564c1eb21988cbfed855e45f97582fa8db7cb9b3d8eab26299a0c -size 675337 +oid sha256:3cc31d65cd13d2923937f5de76341730653ca1c6284cd39c12c3d1b801ee0ceb +size 675478 diff --git a/lib/search/indexes/github-docs-3.3-cn.json.br b/lib/search/indexes/github-docs-3.3-cn.json.br index 1c28729e4c..9ff0ee0a4e 100644 --- a/lib/search/indexes/github-docs-3.3-cn.json.br +++ b/lib/search/indexes/github-docs-3.3-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bafa5befb2a132a464eb89e0316d8d2074fabc852ae80874a7d162ac92612d37 -size 1475180 +oid sha256:55804b5196edcac33e3ce673260a01e2dc8c47474756e8ba99eca7a9f1708947 +size 1474769 diff --git a/lib/search/indexes/github-docs-3.3-en-records.json.br b/lib/search/indexes/github-docs-3.3-en-records.json.br index 45debafc74..a928ccdbcf 100644 --- a/lib/search/indexes/github-docs-3.3-en-records.json.br +++ b/lib/search/indexes/github-docs-3.3-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2d1e122630d466490e494ee941422f4b50ee9a6470a9eae2f6e4670aa75bd03e -size 1037130 +oid sha256:96acbd2259872b79cc37e97525ce0625a2426ff2218a835701fe58d67aed4389 +size 1036726 diff --git a/lib/search/indexes/github-docs-3.3-en.json.br b/lib/search/indexes/github-docs-3.3-en.json.br index 90d601dbef..59cb0bfef6 100644 --- a/lib/search/indexes/github-docs-3.3-en.json.br +++ b/lib/search/indexes/github-docs-3.3-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9d82730f4cc4d29aa2d86f502f922acda6ada063904a60e04418181e75e5b2a2 -size 4176490 +oid sha256:3fbc17b060e0affd6a1d369fd58b4b531c56e35ebebc099eeb6db8fbb7318f73 +size 4177153 diff --git a/lib/search/indexes/github-docs-3.3-es-records.json.br b/lib/search/indexes/github-docs-3.3-es-records.json.br index 7430485fef..9e2237579f 100644 --- a/lib/search/indexes/github-docs-3.3-es-records.json.br +++ b/lib/search/indexes/github-docs-3.3-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8072d02151a62a924b9bb0408dabd2efe7acbefa93a5756b8e0efc8fbb3c102c -size 634728 +oid sha256:e1e01122abe12e0f65c5f97987ea2f69a9708cbea6953494cccf4340cf3ae14b +size 634837 diff --git a/lib/search/indexes/github-docs-3.3-es.json.br b/lib/search/indexes/github-docs-3.3-es.json.br index 83639c372e..c0022512d7 100644 --- a/lib/search/indexes/github-docs-3.3-es.json.br +++ b/lib/search/indexes/github-docs-3.3-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:972a5c7a965dd01c2ed588e0f979e86ffd99088b9cab7c22015712926caccb0f -size 2823306 +oid sha256:a3f02ce156ae7fc9ac8bf1f9bdfe555965492945e3db6d5094e791b062812b59 +size 2822675 diff --git a/lib/search/indexes/github-docs-3.3-ja-records.json.br b/lib/search/indexes/github-docs-3.3-ja-records.json.br index bdce913a4a..7803545042 100644 --- a/lib/search/indexes/github-docs-3.3-ja-records.json.br +++ b/lib/search/indexes/github-docs-3.3-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfa6398feaad052632b5e712edc66b60a5c1eac216ec90a7b22fc561847202c1 -size 691816 +oid sha256:1392a0bd465427a7ced223a25d2fed71cb868b8be19d0b4c76a2f65ea1e6b473 +size 691861 diff --git a/lib/search/indexes/github-docs-3.3-ja.json.br b/lib/search/indexes/github-docs-3.3-ja.json.br index f442b1f6b8..ffed815698 100644 --- a/lib/search/indexes/github-docs-3.3-ja.json.br +++ b/lib/search/indexes/github-docs-3.3-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b03f9cb9ec73e0155b605f83ded113667c9ea4ee5336c7ce18df2dc1223f5f5f -size 3685133 +oid sha256:b63fe2dd634c297a7dd07c4b0928cfa7450287e1ebed8df75315724d65ef1468 +size 3685143 diff --git a/lib/search/indexes/github-docs-3.3-pt-records.json.br b/lib/search/indexes/github-docs-3.3-pt-records.json.br index 90e564ed8a..93fbb66439 100644 --- a/lib/search/indexes/github-docs-3.3-pt-records.json.br +++ b/lib/search/indexes/github-docs-3.3-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c038e8010faa9a92e4be73b3ea0f3a6cd4cbb10e4721790856aa3044e84d7c6b -size 633020 +oid sha256:949fa288e22d7c70eb887e98bf12ce772314c376f97378d039b42bfd452bce10 +size 632959 diff --git a/lib/search/indexes/github-docs-3.3-pt.json.br b/lib/search/indexes/github-docs-3.3-pt.json.br index 39a1d79633..220ab88471 100644 --- a/lib/search/indexes/github-docs-3.3-pt.json.br +++ b/lib/search/indexes/github-docs-3.3-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:39f9f0f2f93a781c4921d8ffed0596a9ab167eb3bb716c6b3c9dc2bd5daec28b -size 2685773 +oid sha256:acaa23a298165050fe56b1112039872630a65ac2a27647c23abb35598364402c +size 2685806 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 bef0b24c0f..ee5742d2db 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:c602c17b3368fed21a1c9eedc155df6060a8e844eb6a5fe4a6dc5e47e8f7d59d -size 881308 +oid sha256:0000c28973dd56074f953a2fd8fc97bbca88bc39b213c0dbcb1d25d078da988e +size 881338 diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br index 75d5dbf247..2de2edbb8c 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:f2a1f9087a8579e860a15f8437ddbf8ee26d07d11386f6a10cb344cad5f5a364 -size 1658470 +oid sha256:1a740adb379c7a7f834ace9cbdd6a4e4e40854b9484c3b610ecb43b05b94943f +size 1659015 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 b119d1ee5c..9a5cb72b4f 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:6367630f97d397e8d18ec2d620110118cabc6dfc34b60891b687a4e9599b5407 -size 1318815 +oid sha256:491cce3414cf4341b48beb25993a77c611240cacc0bd35eb452fa32f6b007d9b +size 1325587 diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br index c7f55295b1..24b5ce357d 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:eacb5af43a36f3e682330cf1da2c2205383bea7e2e16eb3f9a89131c177d8cf5 -size 5049309 +oid sha256:751a27da24b280ab51ed9db7d65161e22d949bbe892d345e3adc485dae00e41a +size 5047699 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 0e44dfed1b..09ac18a856 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:07caed9b53c83bea13e7c1548de1aa856a820350c5ba5230ba000da5760c2720 -size 811193 +oid sha256:5ea1e46d9576b3b9c1a0776d8c58c05d8fd2ab2f7c5927b8ff4acf1a1fca312b +size 811330 diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br index c77bae30c6..c1d311043f 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:1f1a8ff712799fd6783b03a788efd4acf4d6c908447dcb81df7f978d50ef3695 -size 3428574 +oid sha256:ae4cff703e7808495168184c44c1eb031974cd128fbfd6fc4b55a32b6cc7e031 +size 3428992 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 8a0116c562..f75c8746a6 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:9f39614a3bf7cd8065a849b72349344aab3371d41fbdf6d415b18e8f50963af0 -size 899466 +oid sha256:e6ae921fe4d6a51fa98050400cf59a0ddfe0d45d2f19d63e72b07577c715c845 +size 899610 diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br index 74197c2257..3aaf29d6ec 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:b8a7f2d03540b320d03107a6621d381fef10fb579edd9c7766a1adc9a590da80 -size 4584006 +oid sha256:dab53375aff65d67566a9658fc98d9408e13acec0ef052e4035eb5178a5f040c +size 4584345 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 4d30b4f057..49f84940b8 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:11962d6b3255ba5e5a8cb11cf993653902cda731fd7a168bd98ab97b6d7f630c -size 809226 +oid sha256:d2f23e1505e56b87cda2b62a8f080c0f68363b5878dced557350e94fec9e9b11 +size 809150 diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br index 4acad335eb..deecd7c231 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:b3431163729c91002ac7b0981a39521b5a7cd8b2aa0cd8c9b4e7c50c70c0d142 -size 3277072 +oid sha256:756280389997153cfa604342f15991bb2f04e41175ad41ed48dbaef21c7c0e23 +size 3275960 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 30a105ef69..5fd6e275d7 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:76875d0b4549e961aa700c7fb59ed04a9fd089af827056ecd9952c5b19fbaefe -size 509214 +oid sha256:b983878391de63dacd44c8f446aaa46498d296344a13a7bc62dcded910d0a095 +size 509254 diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br index 2ad07ed3c4..b28fcc2763 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:087f49a8577258f2271a41ed0cca5a852eca2961d330de36c20e5977a1ad352f -size 1047532 +oid sha256:09962941c09daed17180415d255a0cd56e43f05ed0fc54b8b7f9a1e98a425694 +size 1047719 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 3679c2e084..4f5ba9672b 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:11670ca56053e78878708e00c980ae5344ab78f500c57f0e1c136d997c0b7208 -size 800007 +oid sha256:5df8dc900a00cedd115f871e3524e83ebcf1804729ce5f6c1829585f50281b61 +size 799940 diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br index 5b129d70b8..3bc8034541 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:f2865a17bf2f37c80b1434cb39d88d25d47a3af293383096787dcaa878bca72e -size 3209873 +oid sha256:c9c7b7d7603bd351ad4277891f6790cb8c572429a6b4131418381e03220b470d +size 3209510 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 e43c7e7a95..7b23acd8dd 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:c4fb99ca7968cc1598cfb60336c39697969646b1817ad7df25e4742fd9be1a56 -size 481241 +oid sha256:2608c0294e09276c8f28e35ae026c67802b011b0d1873b8c10bb6ee63fe86341 +size 481207 diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br index 54acd14194..c47a492577 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:8ab65b24d6fada9ba969400752380ffd58266f33f3ba3c9e5d38c986901c3617 -size 2043620 +oid sha256:0b98445f902c88fe7348b0384dec607d4fd7cb6c3fc5289eb612e60fe2140357 +size 2043151 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 cf5f029b88..75822b42ee 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:3004264c214001845e333de3f8d22533f2a1bcbd2467a2b12538b485a09f8582 -size 522294 +oid sha256:b17a95595e71a84b9fa88a00c452bf2f4030eace4bb22d8c661bbb1b8a28e625 +size 522367 diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br index 7c05e90e2c..f69a7040a6 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:3b5cc5bfe9a266e0e0970490c0c654fd87cf7cbccb21a7a074cb317c1dc43c5e -size 2658969 +oid sha256:c6d29430b6ec9633cc1c663e455c69db10f947200a6cc33e347ba6e144d11e95 +size 2659126 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 a359c80a3a..8b309117b8 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:843b42d1072473f096f3b8ee7b9c22103ee5197bc4ff2c3bbe313e9498e9d530 -size 479385 +oid sha256:28752a429fe43a8b9633af311e52b8e8e192f96054970bd90377f679aef6e513 +size 479406 diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br index c1fdc14da8..5ec59d7623 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:bdd0b59c5300dbba07ede9d435ec9db3eb5d36a776adbad1bf4e1901a3504811 -size 1948798 +oid sha256:d30205aa19e24f637c1b19e80f5843668216c11dc30875bd6d5eea0c055b0c81 +size 1948968 diff --git a/lib/search/indexes/github-docs-ghec-cn-records.json.br b/lib/search/indexes/github-docs-ghec-cn-records.json.br index 52932d9241..b430f329bc 100644 --- a/lib/search/indexes/github-docs-ghec-cn-records.json.br +++ b/lib/search/indexes/github-docs-ghec-cn-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c02f7b914deea172d5490408daed55665cb5b4391b075e031b45dbb11d82b2b -size 785132 +oid sha256:ed472641e047f001a9bf6757892255bc999e20337a6f838912c1ba2c3266baea +size 784882 diff --git a/lib/search/indexes/github-docs-ghec-cn.json.br b/lib/search/indexes/github-docs-ghec-cn.json.br index 2823e1abf7..222118fdc0 100644 --- a/lib/search/indexes/github-docs-ghec-cn.json.br +++ b/lib/search/indexes/github-docs-ghec-cn.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:08a88034d9f87d56553ec60e4b690ffcc01547e222e326a15c0b58ee07141ca7 -size 1670051 +oid sha256:515da5b4d4c3f652c84b6e81958a9228be23651d8c12879e649cb63764019f6c +size 1669000 diff --git a/lib/search/indexes/github-docs-ghec-en-records.json.br b/lib/search/indexes/github-docs-ghec-en-records.json.br index 51c489c2e5..68b151b01f 100644 --- a/lib/search/indexes/github-docs-ghec-en-records.json.br +++ b/lib/search/indexes/github-docs-ghec-en-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d75419d056dcfa3e7b0708c7c97cf9e9293e502285a6f7a7296e9f0fdbe24dd1 -size 1177083 +oid sha256:695c9740ba856871ce27c45d92727ca3acad95cdd54888948059dff5a1f99445 +size 1176404 diff --git a/lib/search/indexes/github-docs-ghec-en.json.br b/lib/search/indexes/github-docs-ghec-en.json.br index 31e4b2e70d..42d98494df 100644 --- a/lib/search/indexes/github-docs-ghec-en.json.br +++ b/lib/search/indexes/github-docs-ghec-en.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:28c0e9c8dda1a35841c1ad084ddf84ddbd4365a199b8f06b0e2fdd87f63bdd80 -size 4734081 +oid sha256:4a8d44e1285d44897f47d178d32797e3974f7ea2afda16c309ce7dcad01675e2 +size 4734681 diff --git a/lib/search/indexes/github-docs-ghec-es-records.json.br b/lib/search/indexes/github-docs-ghec-es-records.json.br index 40674aabb0..8755c6999a 100644 --- a/lib/search/indexes/github-docs-ghec-es-records.json.br +++ b/lib/search/indexes/github-docs-ghec-es-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:62b61d5415d1a5a4c432afcb840e2ea9f2b20725280fc89b505243bd6e178591 -size 747681 +oid sha256:916acf89a3d50e99c58c7eb1165972bc0c068d66e706e8a0b08e25f652818f89 +size 747640 diff --git a/lib/search/indexes/github-docs-ghec-es.json.br b/lib/search/indexes/github-docs-ghec-es.json.br index acfe30ca10..f802dd2397 100644 --- a/lib/search/indexes/github-docs-ghec-es.json.br +++ b/lib/search/indexes/github-docs-ghec-es.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27aa280959e1ae3668af332b44d2301f5c844499d8c9b2ff8eb6cc368e935b3c -size 3332171 +oid sha256:2f644e0dcab080343280e16e3614ba721f74e8db81acc889b942a89af134e876 +size 3332085 diff --git a/lib/search/indexes/github-docs-ghec-ja-records.json.br b/lib/search/indexes/github-docs-ghec-ja-records.json.br index 90b0906fd9..1b00e90076 100644 --- a/lib/search/indexes/github-docs-ghec-ja-records.json.br +++ b/lib/search/indexes/github-docs-ghec-ja-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c953c3522b5038a74fa01ff8b0f5b53f3afa1227a3995ed47a50624de7e167a -size 807530 +oid sha256:433eb610ae49bd064c4c22e44b831bcfbd1e0102b76a7de839fde84febcc94b9 +size 807427 diff --git a/lib/search/indexes/github-docs-ghec-ja.json.br b/lib/search/indexes/github-docs-ghec-ja.json.br index 7c254a7d1f..90cbcf4dad 100644 --- a/lib/search/indexes/github-docs-ghec-ja.json.br +++ b/lib/search/indexes/github-docs-ghec-ja.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd9a422cb8677da6c999597858749508911068c9b7f46c7043ff5f780bc94913 -size 4325909 +oid sha256:e89ec03e5a3182b2050bf530dc98ba2eee2cbaeb0e39856de8a74772841329bf +size 4326724 diff --git a/lib/search/indexes/github-docs-ghec-pt-records.json.br b/lib/search/indexes/github-docs-ghec-pt-records.json.br index 03b63b5891..5cac47fe19 100644 --- a/lib/search/indexes/github-docs-ghec-pt-records.json.br +++ b/lib/search/indexes/github-docs-ghec-pt-records.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c6e2ce600b3c160e04bc40fe90720bdc35ef44036012469b6a7b0102f65f8b1 -size 746777 +oid sha256:f6ade69070f59be68792c2027233ccc377868c56fb27541960e2314f78126915 +size 746576 diff --git a/lib/search/indexes/github-docs-ghec-pt.json.br b/lib/search/indexes/github-docs-ghec-pt.json.br index 11f9a4f5dc..7348bdd3eb 100644 --- a/lib/search/indexes/github-docs-ghec-pt.json.br +++ b/lib/search/indexes/github-docs-ghec-pt.json.br @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:099be30a724619a92d25a2f69ad1da96030db6cd1e5f91c92fe5956d39e36793 -size 3172811 +oid sha256:33aa1a15aaa24c35529ef6914f6665fd5a6a152688985723501ca7a97572ecf3 +size 3172961 From 5b22bbe1c131a29af6e918b091f396da5b6ff7de Mon Sep 17 00:00:00 2001 From: mc <42146119+mchammer01@users.noreply.github.com> Date: Mon, 6 Dec 2021 11:32:47 +0000 Subject: [PATCH 4/4] Simplify versioning in article about secret scanning, and make it consistent with the rest (#23401) * simplify versioning --- .../managing-alerts-from-secret-scanning.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/content/code-security/secret-scanning/managing-alerts-from-secret-scanning.md b/content/code-security/secret-scanning/managing-alerts-from-secret-scanning.md index f1d15dceea..b148ac4d78 100644 --- a/content/code-security/secret-scanning/managing-alerts-from-secret-scanning.md +++ b/content/code-security/secret-scanning/managing-alerts-from-secret-scanning.md @@ -25,14 +25,14 @@ shortTitle: Manage secret alerts {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-security %} -3. In the left sidebar, click **Secret scanning alerts**. +1. In the left sidebar, click **Secret scanning alerts**. {% ifversion fpt or ghes or ghec %} !["Secret scanning alerts" tab](/assets/images/help/repository/sidebar-secrets.png) {% endif %} {% ifversion ghae %} !["Secret scanning alerts" tab](/assets/images/enterprise/github-ae/repository/sidebar-secrets-ghae.png) {% endif %} -4. Under "Secret scanning" click the alert you want to view. +1. Under "Secret scanning" click the alert you want to view. {% ifversion fpt or ghec %} ![List of alerts from secret scanning](/assets/images/help/repository/secret-scanning-click-alert.png) {% endif %} @@ -42,11 +42,7 @@ shortTitle: Manage secret alerts {% ifversion ghae %} ![List of alerts from secret scanning](/assets/images/enterprise/github-ae/repository/secret-scanning-click-alert-ghae.png) {% endif %} -5. {% ifversion fpt or ghec %} - Optionally, use the "Close as" drop-down menu and click a reason for resolving an alert. - {%- elsif ghes or ghae %} - Optionally, use the "Mark as" drop-down menu and click a reason for resolving an alert. - {% endif %} +1. Optionally, select the {% ifversion fpt or ghec %}"Close as"{% elsif ghes or ghae %}"Mark as"{% endif %} drop-down menu and click a reason for resolving an alert. {% ifversion fpt or ghec %} ![Drop-down menu for resolving an alert from secret scanning](/assets/images/help/repository/secret-scanning-resolve-alert.png) {% endif %}