diff --git a/.github/workflows/staging-deploy-pr-docker.yml b/.github/workflows/staging-deploy-pr-docker.yml
index 2b267b3c75..a1d606d967 100644
--- a/.github/workflows/staging-deploy-pr-docker.yml
+++ b/.github/workflows/staging-deploy-pr-docker.yml
@@ -12,8 +12,6 @@ on:
- completed
env:
- EARLY_ACCESS_SCRIPT_PATH: script/early-access/clone-for-build.js
- EARLY_ACCESS_SUPPORT_FILES: script/package.json
# In this specific workflow relationship, the `github.event.workflow_run.pull_requests`
# array will always contain only 1 item! Specifically, it will contain the PR associated
# with the `github.event.workflow_run.head_branch` that triggered the preceding
@@ -43,6 +41,11 @@ jobs:
GITHUB_EVENT_CONTEXT: ${{ toJSON(github.event) }}
run: echo "$GITHUB_EVENT_CONTEXT"
+ - name: Check out repo's default branch
+ uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
+ with:
+ persist-credentials: 'false'
+
- name: Download build artifact
uses: dawidd6/action-download-artifact@b9571484721e8187f1fd08147b497129f8972c74
with:
@@ -69,13 +72,6 @@ jobs:
node-version: 16.x
cache: npm
- - if: ${{ github.repository == 'github/docs-internal' }}
- name: Download the script to clone early access
- uses: Bhacaz/checkout-files@c8f01756bfd894ba746d5bf48205e19000b0742b
- with:
- files: ${{ env.EARLY_ACCESS_SCRIPT_PATH }} ${{ env.EARLY_ACCESS_SUPPORT_FILES }}
- token: ${{ secrets.GITHUB_TOKEN }}
-
# Add any dependencies that are needed for this workflow below
- if: ${{ github.repository == 'github/docs-internal' }}
name: Install temporary development-only dependencies
@@ -83,61 +79,11 @@ jobs:
- if: ${{ github.repository == 'github/docs-internal' }}
name: Clone early access
- run: node ${{ env.EARLY_ACCESS_SCRIPT_PATH }}
+ run: node script/early-access/clone-for-build.js
env:
DOCUBOT_REPO_PAT: ${{ secrets.DOCUBOT_REPO_PAT }}
GIT_BRANCH: ${{ github.event.workflow_run.head_branch }}
- # Remove any dependencies installed for this workflow below
- # - if: ${{ github.repository == 'github/docs-internal' }}
- # name: Remove development-only dependencies
- # run: npm prune --production
-
- - if: ${{ github.repository == 'github/docs-internal' }}
- name: Delete the script directory after cloning early access
- run: rm -rf script/
-
- # - name: Create a gzipped archive
- # run: |
- # touch app.tar.gz
- # tar --exclude=app.tar.gz -czf app.tar.gz ./
-
- # - name: Install Heroku client development-only dependency
- # run: npm install --no-save heroku-client
-
- # - name: Create a Heroku build source
- # id: build-source
- # uses: actions/github-script@2b34a689ec86a68d8ab9478298f91d5401337b7d
- # env:
- # HEROKU_API_TOKEN: ${{ secrets.HEROKU_API_TOKEN }}
- # with:
- # script: |
- # const { owner, repo } = context.repo
-
- # if (owner !== 'github') {
- # throw new Error(`Repository owner must be 'github' but was: ${owner}`)
- # }
- # if (repo !== 'docs-internal' && repo !== 'docs') {
- # throw new Error(`Repository name must be either 'docs-internal' or 'docs' but was: ${repo}`)
- # }
-
- # const Heroku = require('heroku-client')
- # const heroku = new Heroku({ token: process.env.HEROKU_API_TOKEN })
-
- # const { source_blob: sourceBlob } = await heroku.post('/sources')
- # const { put_url: uploadUrl, get_url: downloadUrl } = sourceBlob
-
- # core.setOutput('upload_url', uploadUrl)
- # core.setOutput('download_url', downloadUrl)
-
- # # See: https://devcenter.heroku.com/articles/build-and-release-using-the-api#sources-endpoint
- # - name: Upload to the Heroku build source
- # run: |
- # curl '${{ steps.build-source.outputs.upload_url }}' \
- # -X PUT \
- # -H 'Content-Type:' \
- # --data-binary @app.tar.gz
-
- name: Install one-off development-only dependencies
run: npm install --no-save --include=optional esm
diff --git a/assets/images/help/images/overview-actions-design.png b/assets/images/help/images/overview-actions-design.png
index 7db5ce6f8f..5c7b2c06bd 100644
Binary files a/assets/images/help/images/overview-actions-design.png and b/assets/images/help/images/overview-actions-design.png differ
diff --git a/assets/images/help/images/overview-actions-event.png b/assets/images/help/images/overview-actions-event.png
index c4527fb499..7f4755c26b 100644
Binary files a/assets/images/help/images/overview-actions-event.png and b/assets/images/help/images/overview-actions-event.png differ
diff --git a/assets/images/help/images/overview-actions-simple.png b/assets/images/help/images/overview-actions-simple.png
index 4219c48124..5ebfd805b7 100644
Binary files a/assets/images/help/images/overview-actions-simple.png and b/assets/images/help/images/overview-actions-simple.png differ
diff --git a/content/actions/index.md b/content/actions/index.md
index 8a7ec8c2df..dbe0c9a0ed 100644
--- a/content/actions/index.md
+++ b/content/actions/index.md
@@ -3,6 +3,7 @@ title: GitHub Actions Documentation
shortTitle: GitHub Actions
intro: 'Automate, customize, and execute your software development workflows right in your repository with {% data variables.product.prodname_actions %}. You can discover, create, and share actions to perform any job you''d like, including CI/CD, and combine actions in a completely customized workflow.'
introLinks:
+ overview: /actions/learn-github-actions/understanding-github-actions
quickstart: /actions/quickstart
reference: /actions/reference
featuredLinks:
diff --git a/content/actions/learn-github-actions/index.md b/content/actions/learn-github-actions/index.md
index 05f58fbfd2..b8af500b2f 100644
--- a/content/actions/learn-github-actions/index.md
+++ b/content/actions/learn-github-actions/index.md
@@ -30,7 +30,7 @@ versions:
ghes: '*'
ghae: '*'
children:
- - /introduction-to-github-actions
+ - /understanding-github-actions
- /finding-and-customizing-actions
- /essential-features-of-github-actions
- /managing-complex-workflows
diff --git a/content/actions/learn-github-actions/introduction-to-github-actions.md b/content/actions/learn-github-actions/understanding-github-actions.md
similarity index 97%
rename from content/actions/learn-github-actions/introduction-to-github-actions.md
rename to content/actions/learn-github-actions/understanding-github-actions.md
index f9db17ad34..8115068690 100644
--- a/content/actions/learn-github-actions/introduction-to-github-actions.md
+++ b/content/actions/learn-github-actions/understanding-github-actions.md
@@ -1,11 +1,12 @@
---
-title: Introduction to GitHub Actions
-shortTitle: Introduction to GitHub Actions
-intro: 'Learn about the core concepts and various components of {% data variables.product.prodname_actions %}, and see an example that shows you how to add automation to your repository.'
+title: Understanding GitHub Actions
+shortTitle: Understanding GitHub Actions
+intro: 'Learn the basics of {% data variables.product.prodname_actions %}, including core concepts and essential terminology.'
redirect_from:
- /github/automating-your-workflow-with-github-actions/core-concepts-for-github-actions
- /actions/automating-your-workflow-with-github-actions/core-concepts-for-github-actions
- /actions/getting-started-with-github-actions/core-concepts-for-github-actions
+ - /actions/learn-github-actions/introduction-to-github-actions
versions:
fpt: '*'
ghes: '*'
diff --git a/content/github/administering-a-repository/finding-information-in-a-repository/using-search-to-filter-issues-and-pull-requests.md b/content/github/administering-a-repository/finding-information-in-a-repository/using-search-to-filter-issues-and-pull-requests.md
index 0747c03bec..f01989b0c9 100644
--- a/content/github/administering-a-repository/finding-information-in-a-repository/using-search-to-filter-issues-and-pull-requests.md
+++ b/content/github/administering-a-repository/finding-information-in-a-repository/using-search-to-filter-issues-and-pull-requests.md
@@ -89,6 +89,14 @@ For pull requests, you can also use search to:
- Filter pull requests by the team requested for review: `state:open type:pr team-review-requested:github/atom`{% ifversion fpt or ghes or ghae %}
- Filter for pull requests that are linked to an issue that the pull request may close: `linked:issue`{% endif %}
+{% note %}
+
+**Note:** {% data reusables.pull_requests.large-search-workaround %} You can limit your search with the `org:`, `user:`, or `repo:` qualifiers. For more information, see "[Searching issues and pull requests](/github/searching-for-information-on-github/searching-on-github/searching-issues-and-pull-requests#search-within-a-users-or-organizations-repositories)."
+
+{% endnote %}
+
+
+
## Further reading
- "[Searching issues and pull requests](/articles/searching-issues)"
diff --git a/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md b/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md
index 8f4ccc8eb8..4adfd2516a 100644
--- a/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md
+++ b/content/github/customizing-your-github-workflow/exploring-integrations/github-extensions-and-integrations.md
@@ -43,8 +43,8 @@ You can integrate your {% data variables.product.product_name %} personal accoun
### Slack and {% data variables.product.product_name %} integration
-You can integrate Slack with your personal or organization account to subscribe for notifications, close or open issues, and provide rich references to issues and pull requests without leaving Slack. For more information, visit the [Slack integration app](https://github.com/marketplace/slack-github) in the marketplace.
+You can subscribe to your repositories or organizations and get realtime updates about issues, pull requests, commits, releases, deployment reviews and deployment statuses. You can also perform activities like close or open issues, and provide rich references to issues and pull requests without leaving Slack. For more information, visit the [Slack integration app](https://github.com/marketplace/slack-github) in the marketplace.
### Microsoft Teams and {% data variables.product.product_name %} integration
-You can integrate Microsoft Teams with your personal or organization account to access information about {% data variables.product.product_name %} alongside wider team communication. When you integrate Microsoft Teams with {% data variables.product.product_name %}, you can subscribe for notifications, close or open issues, and provide rich references to issues and pull requests without leaving Microsoft Teams. For more information, visit the [Microsoft Teams integration app](https://appsource.microsoft.com/en-us/product/office/WA200002077) in Microsoft AppSource.
+You can subscribe to your repositories or organizations and get realtime updates about issues, pull requests, commits, deployment reviews and deployment statuses. You can also perform activities like close or open issues, comment on your issues and pull requests, and provide rich references to issues and pull requests without leaving Microsoft Teams. For more information, visit the [Microsoft Teams integration app](https://appsource.microsoft.com/en-us/product/office/WA200002077) in Microsoft AppSource.
diff --git a/content/github/searching-for-information-on-github/searching-on-github/searching-issues-and-pull-requests.md b/content/github/searching-for-information-on-github/searching-on-github/searching-issues-and-pull-requests.md
index 37e428b9f0..77f2e8acd6 100644
--- a/content/github/searching-for-information-on-github/searching-on-github/searching-issues-and-pull-requests.md
+++ b/content/github/searching-for-information-on-github/searching-on-github/searching-issues-and-pull-requests.md
@@ -50,12 +50,17 @@ With the `in` qualifier you can restrict your search to the title, body, comment
To search issues and pull requests in all repositories owned by a certain user or organization, you can use the `user` or `org` qualifier. To search issues and pull requests in a specific repository, you can use the `repo` qualifier.
+{% data reusables.pull_requests.large-search-workaround %}
+
+
| Qualifier | Example
| ------------- | -------------
| user:USERNAME | [**user:defunkt ubuntu**](https://github.com/search?q=user%3Adefunkt+ubuntu&type=Issues) matches issues with the word "ubuntu" from repositories owned by @defunkt.
| org:ORGNAME | [**org:github**](https://github.com/search?q=org%3Agithub&type=Issues&utf8=%E2%9C%93) matches issues in repositories owned by the GitHub organization.
| repo:USERNAME/REPOSITORY | [**repo:mozilla/shumway created:<2012-03-01**](https://github.com/search?q=repo%3Amozilla%2Fshumway+created%3A%3C2012-03-01&type=Issues) matches issues from @mozilla's shumway project that were created before March 2012.
+
+
## Search by open or closed state
You can filter issues and pull requests based on whether they're open or closed using the `state` or `is` qualifier.
diff --git a/contributing/content-style-guide.md b/contributing/content-style-guide.md
index 47409b99fd..966c31ee55 100644
--- a/contributing/content-style-guide.md
+++ b/contributing/content-style-guide.md
@@ -49,6 +49,7 @@ These guidelines are specific to GitHub’s documentation. For general style que
- [Accounts](#accounts)
- [Acronyms](#acronyms)
- [Apps](#apps)
+ - [Currency](#currency)
- [Inclusive language](#inclusive-language-1)
- [Prepositions](#prepositions)
- [Product names](#product-names-1)
@@ -470,6 +471,31 @@ Use "Apps" when referring to specific apps or types of apps.
GitHub Apps is always capitalized, because it’s a feature name.
+### Currency
+
+When referring to dollars, cents, amounts of currency or using the `$` sign, ensure the currency used is defined even if the amount is zero. Use the [ISO standard currency name](https://www.iso.org/iso-4217-currency-codes.html), and the [ISO standard currency code](https://www.six-group.com/en/products-services/financial-information/data-standards.html#scrollTo=currency-codes) where possible.
+
+Use lowercase for currency names, but capitalize the reference to the country or region.
+- **Use:** US dollar.
+- **Avoid:** US Dollar, $USD dollar.
+
+Use uppercase for currency codes.
+- **Use:** USD.
+
+Where there is only one reference in an article, use the currency name without a `$` sign preceding the amount.
+- **Use:** `10 US dollars` for a single reference to currency.
+
+Where an article contains several references to the same currency, ensure that the first reference uses the currency name without a `$` sign preceding the amount and includes the currency code in parentheses following the currency name.
+
+For subsequent references to currency in an article or where appropriate (such as when space is a consideration, or when several amounts are presented in a table or list), include the `$` sign preceding the amount and use the ISO standard currency code following the amount.
+- **Use:** `10 US dollars (USD)` for the first reference, and `$0.25 USD` for subsequent references.
+- **Avoid:** `$10 US dollars (USD)`, `USD$0.25`.
+
+Where the first reference concerns `cents` or a non-dollar amount, capitalize the reference to the country or region of the currency used in parentheses immediately after the first reference. Subsequent currency references are treated using the guidelines above.
+
+- **Use:** `99 cents (US currency)` for the first reference, and `99 cents` for subsequent references.
+- **Avoid:** `$0.99 (US currency)`, `$0.99 USD cents`, `USD$0.99 cents`.
+
### Inclusive language
See the “Inclusive language” section of this guide.
diff --git a/data/reusables/codespaces/codespaces-spending-limit-requirement.md b/data/reusables/codespaces/codespaces-spending-limit-requirement.md
index 597cadd502..1066cb9208 100644
--- a/data/reusables/codespaces/codespaces-spending-limit-requirement.md
+++ b/data/reusables/codespaces/codespaces-spending-limit-requirement.md
@@ -1,7 +1,7 @@
{% note %}
-**Note:** After the {% data variables.product.prodname_codespaces %} trial period ends, you must set a spending limit before you can use {% data variables.product.prodname_codespaces %}. By default, your organization will have a {% data variables.product.prodname_codespaces %} spending limit of $0, which prevents any codespaces from being created. To allow your users to create codespaces in your organization, set the limit to a value higher than $0.
+**Note:** After the {% data variables.product.prodname_codespaces %} trial period ends, you must set a spending limit before you can use {% data variables.product.prodname_codespaces %}. By default, your organization or enterprise will have a {% data variables.product.prodname_codespaces %} spending limit of $0, which prevents any codespaces from being created or existing codespaces from being opened. To allow your users to create codespaces in your organization, set the limit to a value higher than $0.
{% endnote %}
-By default, your organization will have a {% data variables.product.prodname_codespaces %} spending limit of $0, which prevents new codespaces from being created or existing codespaces from being opened. To allow your users to create codespaces in your organization, set the limit to a value higher than $0.
+By default, your organization or enterprise will have a {% data variables.product.prodname_codespaces %} spending limit of $0, which prevents new codespaces from being created or existing codespaces from being opened. To allow your users to create codespaces in your organization, set the limit to a value higher than $0.
diff --git a/data/reusables/pull_requests/large-search-workaround.md b/data/reusables/pull_requests/large-search-workaround.md
new file mode 100644
index 0000000000..c0e68b6b9b
--- /dev/null
+++ b/data/reusables/pull_requests/large-search-workaround.md
@@ -0,0 +1 @@
+If you have access to pull requests in more than 10,000 repositories, you will need to limit your search to a specific organization, user account, or repository to see results.
\ No newline at end of file
diff --git a/lib/enterprise-dates.json b/lib/enterprise-dates.json
index 521a3fd395..238c1a4099 100644
--- a/lib/enterprise-dates.json
+++ b/lib/enterprise-dates.json
@@ -100,7 +100,7 @@
"deprecationDate": "2022-06-03"
},
"3.2": {
- "releaseDate": "2021-09-07",
+ "releaseDate": "2021-09-09",
"deprecationDate": "2022-09-28"
},
"3.3": {
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 2cddc2bc2a..8b617615d9 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:1db2078d1f0c3881cb8ea260727894ba9cb170616190ed84dc1acfdab7d8db7f
-size 506854
+oid sha256:b44817c52ed9851af61cf234aad08e6175e3c6a3b0b54186b2f382a2843a67f4
+size 506878
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 5915ac7b0e..672ba311ba 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:d2c85c8d1361eab0b22fd5b80a7cca3db552488e9b69b7d4e0ac2fa55daad1f8
-size 802554
+oid sha256:0f8aa2f1bcca702cdad42426512143d67309fa67ba149871d024672b0bff534e
+size 802439
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 98f508bc9f..0ff6fc5d94 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:f03a5f0f8561ea2131ac2ccc939e772bc8bbc7ade4ff08552e450917780dc26a
-size 469499
+oid sha256:53e43540cf444bf08b1b5c909bfb4a7fabd2878cd84f6a1b7902d4be7769b2ec
+size 469327
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 954c5a7b2c..01e63dde5b 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:04950c633a9834d8b121311f32ff7065411fc96da80870c55a2a3d6106c70ddc
-size 2079772
+oid sha256:124669c488cbeba21506268cce4134079daa8a48a3a7441ab6f3331735485bea
+size 2078720
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 5c2b6b66f0..86c0303cb2 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:4c29627b5a70d3bbf4ebc45966c7afac798fbea36a4531e463669a9937b0b8a3
-size 432664
+oid sha256:5b270b7df2724903639d177e04225b0acbb6ac03627909495e92160cd8bee68d
+size 432811
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 abd2b2b917..a627f40462 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:6b90140f5f6999e0fc23445300f331acb8d47cb7a1c06ee417e4a3567df458b2
-size 1695927
+oid sha256:c24b75c63eeccd776de644a9ec9e66c468d9afa92748c7c9a4b39891f7cb7abc
+size 1696199
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 b08d4f00e7..ea801e0b7b 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:ea843337af5824b73711eb5c81ab869f91b899e133350485d808084711908712
-size 280023
+oid sha256:e076185b87c20f94b4017d5d73fdb461428b43f714835d486daaccf966f774af
+size 280294
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 1f4ada1230..23a5adab22 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:bd456cbf0d41a26aa40ec2883025933e26c54c714935508c8cf2494080b5d715
-size 1067632
+oid sha256:1cb808d9fb6eb3407f4a11f94f825eb9030aa6e2166f078ebb42935d63985998
+size 1067026
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 92e6e0bcbc..ad8e53c53d 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:d476579786a5d3b58296f55fca8664d801db9a32d7454a1e9b32b76bb05efdbe
-size 528589
+oid sha256:fa86743304036bd46639c2cfa6de23d85276cb85e73da9c1ccee854b494230b8
+size 529332
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 ee53a4c63c..feac6a7142 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:8500a0b6db5a4f235b4ba7c721471ef6847a3b5e3d03c5ce92857c1da2a79a5e
-size 2796601
+oid sha256:de36d36b1052c9bd06ddb8f6c6defdb05f77e1722e15fcaad43cf3ccf9b9cde9
+size 2797942
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 0debdd1379..680bed4096 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:af6ef621cd35f00b758f5af24bb1777607ce5242e765c16237f9191a5a7394ce
-size 443524
+oid sha256:b4bb49079b00be24ba2967d0cd31c6160a7cced9b3b4c8dbc23aedd51bb8b269
+size 443449
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 54ab8256e5..2600c7a0af 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:53ba98469e4951e4997bbcf7d3718182b1487b1d3a4f0d328651fb3198e5367a
-size 1851870
+oid sha256:8dd1d0dc2530e6133fd7f52d1bb8888e9f0fdab435bdd9cc110fa21b1ace94c2
+size 1851336
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 0eed4a8565..cce4cef68c 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:aa088539a6bb6d05c377fcfe773676461ce2c54fad645b985f503a78b9196774
-size 524430
+oid sha256:c7867bf315250b2dde71cd0ce508a5c3911c5b21b5aaf3cd905631905d89840c
+size 524579
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 ecbfd1186a..78663d82a8 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:4abed99ebb1c108cec7612d3452f821305ec3ac059d624a4066f26f480e736bd
-size 832898
+oid sha256:326cc15357264a34b2f7660162d5fd0e262a59cc9a6c11e80307370656d56bc3
+size 833810
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 6ad2c045c1..6df1da3011 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:50d396326a39d557733616a65dec40bc3e4fb0852794dc270ea8ae0de56c3586
-size 490077
+oid sha256:178d2956c31d4b6925b0bb391701e9c85079799640958282ada786547968903f
+size 490137
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 c02e52b755..6f854432c1 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:42a3e47645f861397f1464af7c48e26576a238e28d29ec16325514fa248c33ad
-size 2178391
+oid sha256:20e93d3197d3521ac0d506812182f17220360edd70629431e50d70b98ddcafcd
+size 2179376
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 1ceec9f9e6..cd3d30e176 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:be9f4ed5ea500aea03a07a04aa85ea6b87b81a4e3efc2f2a09a2a41d0d7bca32
-size 452568
+oid sha256:4c2fb2fc07516c6966940ad588a28e3ae37addbbb9a7ac2ceb9cc31d47b5d32f
+size 451581
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 4119b02ee9..8a3a01e4aa 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:6445600a9334e72d33af671c3137464b70bd390b1442b725f6fce4d28f110d95
-size 1770651
+oid sha256:9d7fee30b3e378c9ad4497366e386984acf4f5a07abd18ced0d7b255c4a447cb
+size 1771025
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 2900a41156..806409ed71 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:85f38b0be8a25b76bfbe5ecd1ab48e29811c71d1b9491e6e2d3bd868a98dd440
-size 278192
+oid sha256:b34ad3891df52ffc4ba213b58bf7b4abcf857b460471b96e303c006e96234c6e
+size 278171
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 bd33f51c98..9ccc4cf9e2 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:7113cd64ba8009da22ead3edde020c8dbce61bfdc37398f63997352e4a17f6e3
-size 1055499
+oid sha256:6f51b7590eb7dcb0ddf4027e24d99edc796939fa93cd267a371d8297b47270ce
+size 1055110
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 1c9fdcb2bc..626368b0a6 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:e12c30a6ce534c8ecaaef9bc0d396ddcc6a8e080d8e07b30368ff9246844412a
-size 550785
+oid sha256:ffc7661a04784b341727f172d461862d2d54108402b8cec3918e1a3007553950
+size 550365
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 c3804b3dd9..6447da6097 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:d7b44e3f4eb80f0bb113065912520c6dab034680e97d2a372cf2ff79aa951073
-size 2915021
+oid sha256:9b15ba7b2734098fb24df198d27d138dd3a4f1ecd287b7ba1ca2a4becb7416c1
+size 2911567
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 e754aa3889..ac012ba667 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:79efc2bd780cd3b5bcb7063aeb68f7cd5da057304b1814be7aceb8dd5c550997
-size 464767
+oid sha256:a7545701d154e770fbf94113ff649fc2d9e46efea9273f621c179c380e4adf2d
+size 464650
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 4c3d3c4b52..bb206424fc 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:5db19fc6ec66e1923513589461e863586e8fecafb4bc820ed52fa427de192ccb
-size 1936831
+oid sha256:26bd4ae625a51404a664eeae15d3bc47f05530a9e8db6113d5409d523bab3c8a
+size 1936082
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 b3a783c335..68920985da 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:80e5dd6ca45083fae529d305f69bc134ddffab291126070d03699ffe4874baa7
-size 534156
+oid sha256:b850659f4ff4062b4f2625036e0354d42040c795ccc3890b32dbc500a429056e
+size 534143
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 7d29d19543..12d52f9a6f 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:c1fdd5aa2a1359fd5a7f39b9a590486345281ac0ab349c9200cabbcc0255a559
-size 845875
+oid sha256:6279f03aca0539c4a9f37f1765119eb6df187029d205276cc1b4e7138db8104b
+size 846031
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 4c776e51fa..94b23e01f7 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:58f6b89d005287fb9a9cd4464780a382378041857e964cd615a74979d8595736
-size 497296
+oid sha256:99eb66cb9732c0c65509146c30a72925b03679bd14832cb26c4577ea52df4dcb
+size 497516
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 2433f05846..0e5b1490ce 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:12d9c2a23ae6020fe96a25eb653f3ab5914196a9493a76eee6b8aeb5ae39e0da
-size 2221181
+oid sha256:defe32e5c6290c2f5903fcadf61d9f26893c2eee3dcbba86db420bb66c11c15a
+size 2222489
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 cff85f0c7a..faba633448 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:94626f54064c4d7cf9ecd3896d3967014d7f832db2f715752276fe65d02d546f
-size 460800
+oid sha256:87194c0efb65e60ba295c89580ed9fc37d4edabc0d6bb28882aeb4cb9c894c92
+size 460783
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 e749c5a952..6d6c5c1bec 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:ed65a6d9a0006e5407a67dd26c468f8c678eb76ccdd97464ae3fc3092b3b521e
-size 1804755
+oid sha256:4395bf90ee0fdf3d840cae4d3d9fa01d1967941daacc9235942040164eb27b19
+size 1805486
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 5af935f864..c3dcfb2a41 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:3cc0bb38296ad3eb9146156e3204eb3a8f0785f5204dcdf9c11333f507a4951f
-size 278484
+oid sha256:7a7221244afbe4cdd4f76eaabee2fd2e8d86bb5d27c0a2e803740e939094db5b
+size 278315
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 07bc2a8292..73220601bb 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:9f2cade24644796bfc7060b6e9d80d19fe6efbd8c0d1c1dd023a58ebd1e3a243
-size 1056753
+oid sha256:1208ca208e890c9e8266bb4a0b163ccad1f573d5c3d060ecbe176b0e315c5820
+size 1056369
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 d3f2794af1..faab04a4af 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:3f77e59376ccae63708d49609d1e5489daec6a332e2381507cdf70bf52ffa57b
-size 558734
+oid sha256:c21c76fd454ffb1c42b9be83311ccee86824030246057c45e67df3b8ea75b6cd
+size 558958
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 028b913e11..f0850915a9 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:b71350f4b5b287f834c96748e882dd81f7570fe83a54f8b152789cb325f6d9c1
-size 2966822
+oid sha256:b3d16eb42f063989363f2a5b2165ee16888743a4689ada59206407628809c5bb
+size 2964899
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 6e2b10fa8a..3affa13441 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:3c47c8649ef73ba5ca244c8fc338a72334a98bd82475907c7b2275ec804bcae0
-size 472166
+oid sha256:33a3ade9c10305ff86b1ce97a3d841798d06e2113993db12a3a3ecd5214d3e9b
+size 471978
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 89ea64222a..0742b4ef64 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:fcbcfc09ab90de9fd77260a36ceb7137732a9fc0d4e00f3287dc602343042290
-size 1972169
+oid sha256:a65fae6e29bbf8174ce003e86295220192c7681c01bdbd1e6bdb001fb8d0c30b
+size 1971746
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 a5faae79b9..86a507fbd9 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:8c070e9b4670a121484d610685677bd75a81bec08853aa1a5245502f44b20bde
-size 710310
+oid sha256:3c080ca614977edb9374f078ceafdb39326ffdd8b5251728d55a281c1d0a123f
+size 709897
diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br
index d0ed5dff85..30b7e11fdc 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:2e2bdac56fab12b99dfc299d54e0f00b318d9e469f59abaf47c50c7c7b661b91
-size 969678
+oid sha256:7bf881adf4d8642818911ff2ec7e0023e2d1fbe61029613b93cd402920e1ea5e
+size 968853
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 61528a56c7..6df46d6d2a 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:25c20f8dd2961d5e46490f4cd6a4fb8c18889daaf7a9047386226be5369c488f
-size 647642
+oid sha256:2d072e9712fc19c38a14a53e3ad76680b8a791c877429e728a88a465ae6dc2c5
+size 647893
diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br
index 05961975eb..07426f34e2 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:332b2c5cad453cacebf6bb058c845170c953924ccaad313f3f4a780b1c0dce39
-size 2902185
+oid sha256:8f0bf94db81768053e01e23da5bb05640d15583abf7e72448b6e3038d11cf408
+size 2901192
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 876e887098..fa7de1387d 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:68719331947ba8220c7ccc1b7166e313ec4c752573b8746f1c5df70f4d8aa963
-size 625052
+oid sha256:b8c11257b9430ec41a18f34a19b8b6342163a2ee3f9666a19069a9616af27cd4
+size 625143
diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br
index 17218ebcc1..8258ae9ac5 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:bc97c90e45ccfe917ceb80dce3e850a5869f4e4d2a29b3cd120e6a1489586c63
-size 2382358
+oid sha256:907e7224b3f06ac0de2ca00a7b669bf5bc4601a8a460c3c9cd635de63372c208
+size 2382218
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 e6c4976617..4c6430f66b 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:7c4bf4397c7b7a860635e48c54b59d51194742f5a15aa387c2b65788cfe063d6
-size 306772
+oid sha256:ef9265fb8baf79b3ac62b1f91832c4892e989d266263f1dea3dea1bd54747841
+size 306651
diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br
index b1f1f339a1..4367411353 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:a0d8837ed8acc0302e552bfd0d51fa734d9dd5b3c49f3f7cecada2e0c4c4f556
-size 1088724
+oid sha256:5c7c169a673f4dbf018a2f14830e98a1eb7bf87e3417074fb601db8680d016a8
+size 1088087
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 d24f0761b8..916d6b97a2 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:04f17a7f2c787f3928980f74da0c15ef6e54b05ea6c042787c752e3a9713b0fd
-size 738487
+oid sha256:a0edadea9ecc849b99dcf50f378ba5f7536ba6b62922613694b21c1030913406
+size 738145
diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br
index e2a7b0a161..ecfa891e15 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:2096b5ca4006f919c562af8b091cfef57c12849b8680895e2c01b25a41158b4a
-size 3852449
+oid sha256:a5696a2056b83cc4c6683d27937f4f1025a8b7bbb60f9f4c304cbeb7e96701a9
+size 3851367
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 675dd9ec9f..08f7c34c41 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:1ab6b17a1f71c756849e6605765b256c7a4848a4845e0f8764297016a1ba4d19
-size 621424
+oid sha256:baee22390d740e6d9e252b2994b16fa09713fcd8d9dedd04a287f2e63fb5ee51
+size 621878
diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br
index 7dd8c34922..0d7889d272 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:ec94a72e3680bdd5060a8089beb966572fa8d55d085086adf6b3e7832a979a3a
-size 2550865
+oid sha256:83037de9a0e30742684d86c4162f77337eb33b7b3a0a9c7e3b974c8acbaeca6e
+size 2553244
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 d03c28c9a7..6f946de1e0 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:1dc5aae11bfb1ef546985356fc27a88f32f68c11eed0ea3b2bb68971536bedc2
-size 414353
+oid sha256:9b24574344f48d61c6d024439cbfa1eb6ab947dd2d3bceee150efe152e9060be
+size 414172
diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br
index f118976b27..5fed30f365 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:77e6e1e785a83e5ee2cec3990b519d7fd79fe2a3e640b498fed0984418a31214
-size 631187
+oid sha256:f02ae2361bb0c3a12fd213756f096cbf5a17bc46646d1b0bec7de6cd58ef11b7
+size 630930
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 5da804ef5b..a22c19a964 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:578308b211563b185bd4ce1a999fed4de1f215bcb7d9e18fc1d18c09c05453a9
-size 390925
+oid sha256:94d8e679fff1d1249704972eda9e4883300932cbfdfb0d5eeafdc594c5f2f171
+size 390759
diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br
index 95de472772..cf2804aa58 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:b8563012a170519a83594d42bc20f011a322a6c3704329d3cc4e4e4f0b61a332
-size 1698394
+oid sha256:62298600b040e0ad896126af56f292ff9f4dc1a2ae8c8a0a15ee57d8801ee42d
+size 1698311
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 d91e3ee023..5cef6d45b5 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:1b748b04a62bae63c0dea212af3924f1b2457fa1ecc473ca742046174b8ace47
-size 360912
+oid sha256:da5c9fe471eaaef451388868d8e308d3bb8a29f8f1f5a0797760f5548c38e7be
+size 360927
diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br
index 6a4da86a5d..e4175e8b28 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:611c342f49a2c82294b6cc9a4f37362e135da2c454668a63ed75e415034da5e6
-size 1354160
+oid sha256:1389494f9732e27c88cd22af987bea4848c171c533774f579890c1813e113dbe
+size 1354486
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 1fe5532ba3..f328084c03 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:7d0b2c758cfbbf5663d91e08b156b53919a07be6b9baa55667b83b23d8cd2e09
-size 200643
+oid sha256:aa692c98640303cea38dc68b65312da9912e0d4a82dff26eb54b04cf72ec5e3a
+size 200741
diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br
index e8253d5187..6dce21459e 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:13e122427fc4090288d0844fe2e5bb94207f3a0ed72699d0cfba8385453064bf
-size 718632
+oid sha256:50f7f7afb8352fc9ec9786a4da484152b51459656a50fa0db36cf7d5ed13f695
+size 718124
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 fdd0aceabd..79a5d578d9 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:1828b5dd115c29c7d3180d63f5b9af75cb3a2ebb48af5cea4530186b057796fd
-size 435872
+oid sha256:e1a63e924f668e74d395d1431abaef1ebbbbb30ca966699b31509c878c263028
+size 435789
diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br
index a8a109853a..e11c34cf85 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:2967599e8bec21a5f2a465398b35a04c7a8e91a26eef0f98e0857752763ed3dd
-size 2217770
+oid sha256:6e495b88899ce3a9f7b55d19af5638a1186bd7c78f47e42bd4fde5b659a854f6
+size 2218948
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 5b4fb0f476..860d44c2ad 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:8a17b35e62c7c0518f6c87622b68a609b37b25fcaa363efa5feb4d641e83fc7d
-size 371581
+oid sha256:d6cf43b2bf56a1501219fc9e0f6fecdcd58bc8b3fbf77aee08d87270e2ad72cc
+size 371897
diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br
index 091e3bc0be..205633ffc2 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:ef15146ac83fe9d865dfd6d6b811f4fdd25f5896458dc420788f6ea6c417a48b
-size 1496206
+oid sha256:6aeca7aeb3a0a9126201d17e3e9af4aa88f463c23dc2be7a97e651d35247630d
+size 1497372