diff --git a/.github/workflows/os-ready-for-review.yml b/.github/workflows/os-ready-for-review.yml
index 543031d337..547463015c 100644
--- a/.github/workflows/os-ready-for-review.yml
+++ b/.github/workflows/os-ready-for-review.yml
@@ -7,7 +7,7 @@ permissions:
contents: read
on:
- pull_request:
+ pull_request_target:
types: [labeled]
issues:
types: [labeled]
diff --git a/.github/workflows/repo-sync.yml b/.github/workflows/repo-sync.yml
index bcfd4e0caa..8084a11c06 100644
--- a/.github/workflows/repo-sync.yml
+++ b/.github/workflows/repo-sync.yml
@@ -143,7 +143,7 @@ jobs:
if: ${{ steps.find-pull-request.outputs.number }}
uses: juliangruber/approve-pull-request-action@c530832d4d346c597332e20e03605aa94fa150a8
with:
- github-token: ${{ secrets.GITHUB_TOKEN }}
+ github-token: ${{ secrets.DOCUBOT_REPO_PAT }}
number: ${{ steps.find-pull-request.outputs.number }}
# Because we get far too much spam ;_;
diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml
index 1b84ada807..3fe7524c0b 100644
--- a/.github/workflows/translations.yml
+++ b/.github/workflows/translations.yml
@@ -47,7 +47,7 @@ jobs:
name: Approve Pull Request
uses: juliangruber/approve-pull-request-action@c530832d4d346c597332e20e03605aa94fa150a8
with:
- github-token: ${{ secrets.GITHUB_TOKEN }}
+ github-token: ${{ secrets.DOCUBOT_REPO_PAT }}
number: ${{ steps.pr.outputs.number }}
- if: ${{ !steps.has-label.outputs.result }}
name: Add automerge label
diff --git a/assets/images/help/releases/auto-generate-release-notes.png b/assets/images/help/releases/auto-generate-release-notes.png
new file mode 100644
index 0000000000..df5c67bcb4
Binary files /dev/null and b/assets/images/help/releases/auto-generate-release-notes.png differ
diff --git a/assets/images/help/releases/release-yml.png b/assets/images/help/releases/release-yml.png
new file mode 100644
index 0000000000..7200306202
Binary files /dev/null and b/assets/images/help/releases/release-yml.png differ
diff --git a/assets/images/help/releases/releases_description.png b/assets/images/help/releases/releases_description.png
deleted file mode 100644
index 4d9cf742cf..0000000000
Binary files a/assets/images/help/releases/releases_description.png and /dev/null differ
diff --git a/assets/images/help/releases/releases_description_auto.png b/assets/images/help/releases/releases_description_auto.png
new file mode 100644
index 0000000000..aa2c888a3a
Binary files /dev/null and b/assets/images/help/releases/releases_description_auto.png differ
diff --git a/assets/images/help/releases/return-to-repository-main-page.PNG b/assets/images/help/releases/return-to-repository-main-page.PNG
new file mode 100644
index 0000000000..6e599c3ff6
Binary files /dev/null and b/assets/images/help/releases/return-to-repository-main-page.PNG differ
diff --git a/components/sublanding/ArticleCards.tsx b/components/sublanding/ArticleCards.tsx
index 4b4cc9d2d2..8592ffb2e4 100644
--- a/components/sublanding/ArticleCards.tsx
+++ b/components/sublanding/ArticleCards.tsx
@@ -40,7 +40,8 @@ export const ArticleCards = () => {
return (
-
+
+ {guides.length === 0
+ ? t('guides_found.none')
+ : guides.length === 1
+ ? t('guides_found.one')
+ : t('guides_found.multiple').replace('{n}', guides.length)}
+
+
{guides.slice(0, numVisible).map((card) => {
return
@@ -101,12 +110,6 @@ export const ArticleCards = () => {
{t('load_more')}
)}
-
- {guides.length === 0 && (
-
-
{t('no_result')}
-
- )}
)
}
diff --git a/content/repositories/releasing-projects-on-github/about-releases.md b/content/repositories/releasing-projects-on-github/about-releases.md
index c4a94aca2a..552e46533c 100644
--- a/content/repositories/releasing-projects-on-github/about-releases.md
+++ b/content/repositories/releasing-projects-on-github/about-releases.md
@@ -33,6 +33,9 @@ You can receive notifications when new releases are published in a repository wi
Anyone with read access to a repository can view and compare releases, but only people with write permissions to a repository can manage releases. For more information, see "[Managing releases in a repository](/github/administering-a-repository/managing-releases-in-a-repository)."
{% ifversion fpt %}
+
+You can manually create release notes while managing a release. Alternatively, you can automatically generate release notes from a default template, or customize your own release notes template. For more information, see "[Automatically generated release notes](/repositories/releasing-projects-on-github/automatically-generated-release-notes)."
+
People with admin permissions to a repository can choose whether {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) objects are included in the ZIP files and tarballs that {% data variables.product.product_name %} creates for each release. For more information, see "[Managing {% data variables.large_files.product_name_short %} objects in archives of your repository](/github/administering-a-repository/managing-git-lfs-objects-in-archives-of-your-repository)."
{% endif %}
diff --git a/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md b/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md
new file mode 100644
index 0000000000..33bd741257
--- /dev/null
+++ b/content/repositories/releasing-projects-on-github/automatically-generated-release-notes.md
@@ -0,0 +1,101 @@
+---
+title: Automatically generated release notes
+intro: You can automatically generate release notes for your GitHub releases
+permissions: 'Repository collaborators and people with write access to a repository can generate and customize automated release notes for a release.'
+versions:
+ fpt: '*'
+topics:
+ - Repositories
+shortTitle: Automated release notes
+---
+
+{% note %}
+
+**Note:** {% data reusables.repositories.auto-gen-release-public-beta %}
+
+{% endnote %}
+
+## About automatically generated release notes
+
+Automatically generated release notes provide an automated alternative to manually writing release notes for your {% data variables.product.prodname_dotcom %} releases. With automatically generated release notes, you can quickly generate an overview of the contents of a release. You can also customize your automated release notes, using labels to create custom categories to organize pull requests you want to include, and exclude certain labels and users from appearing in the output.
+
+## Creating automatically generated release notes for a new release
+
+{% data reusables.repositories.navigate-to-repo %}
+{% data reusables.repositories.releases %}
+3. Click **Draft a new release**.
+ 
+4. {% ifversion fpt %}Click **Choose a tag** and type{% else %}Type{% endif %} a version number for your release. Alternatively, select an existing tag.
+ {% ifversion fpt %}
+ 
+5. If you are creating a new tag, click **Create new tag**.
+
+ {% else %}
+ 
+{% endif %}
+6. If you have created a new tag, use the drop-down menu to select the branch that contains the project you want to release.
+ {% ifversion fpt %}
+ {% else %}
+ {% endif %}
+7. To the top right of the description text box, click **Auto-generate release notes**.
+ 
+8. Check the generated notes to ensure they include all (and only) the information you want to include.
+9. Optionally, to include binary files such as compiled programs in your release, drag and drop or manually select files in the binaries box.
+ 
+10. To notify users that the release is not ready for production and may be unstable, select **This is a pre-release**.
+ 
+{%- ifversion fpt %}
+11. Optionally, select **Create a discussion for this release**, then select the **Category** drop-down menu and click a category for the release discussion.
+ 
+{%- endif %}
+12. If you're ready to publicize your release, click **Publish release**. To work on the release later, click **Save draft**.
+ 
+
+
+## Creating a template for automatically generated release notes
+
+{% data reusables.repositories.navigate-to-repo %}
+{% data reusables.files.add-file %}
+3. In the file name field, type `.github/release.yml` to create the `release.yml` file in the `.github` directory.
+ 
+4. In the file, specify the pull request labels and authors you want to exclude from this release. You can also create new categories and list the pull request labels to be included in each of them. For more information, see "[Managing labels](/issues/using-labels-and-milestones-to-track-work/managing-labels)."
+
+## Example configuration
+
+{% raw %}
+**release.yml**
+```yaml{:copy}
+# release.yml
+
+changelog:
+ exclude:
+ labels:
+ - ignore-for-release
+ authors:
+ - octocat
+ categories:
+ - title: Breaking Changes ðŸ›
+ labels:
+ - Semver-Major
+ - breaking-change
+ - title: Exciting New Features 🎉
+ labels:
+ - Semver-Minor
+ - enhancement
+ - title: Other Changes
+ labels:
+ - "*"
+```
+{% endraw %}
+
+## Release template syntax
+
+| Parameter | Description |Required | Value |
+| :- | :- | :- | :- |
+|`changelog` | Defines the contents within it as the custom template for your release notes.|Required. | No value accpeted.|
+|`exclude`| Creates a category of pull requests to be excluded from the release. Can be set at the top-level of the changelog to apply to all categories or applied on a per-category basis. |Optional | No value accepted.|
+|`authors`| Specifies authors to be excluded from the release.| Optional for `exclude` category.| Accepts usernames and bots as values.|
+|`categories`| Defines the nested contents as custom categories to be included in the template. |Optional | No value accepted.|
+|`title`| Creates an individual category. |Required if `categories` parameter exists.| Takes the category name as its value. |
+|`labels`| Specifies labels to be used by the enclosing category.| Required if `categories` parameter exists, optional for `exclude` parameter.| Accepts any labels, whether currently existing or planned for the future.|
+|`"*"`| Catchall for any pull request not included within a category *above*. If used, it must be added at the end of the file. | Optional| No value accepted. |
diff --git a/content/repositories/releasing-projects-on-github/index.md b/content/repositories/releasing-projects-on-github/index.md
index 14d8bc84fc..b8d5a94c61 100644
--- a/content/repositories/releasing-projects-on-github/index.md
+++ b/content/repositories/releasing-projects-on-github/index.md
@@ -17,7 +17,7 @@ children:
- /viewing-your-repositorys-releases-and-tags
- /linking-to-releases
- /comparing-releases
+ - /automatically-generated-release-notes
- /automation-for-release-forms-with-query-parameters
shortTitle: Release projects
---
-
diff --git a/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md b/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md
index 081489b95f..c1ff03f8a7 100644
--- a/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md
+++ b/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md
@@ -42,15 +42,15 @@ You can choose whether {% data variables.large_files.product_name_long %} ({% da
{% data reusables.repositories.releases %}
3. Click **Draft a new release**.

-4. {% ifversion fpt %}Click **Choose a tag** and type{% else %}Type{% endif %} a version number for your release.
+4. {% ifversion fpt %}Click **Choose a tag** and type{% else %}Type{% endif %} a version number for your release. Alternatively, select an existing tag.
{% ifversion fpt %}

-1. Click **Create new tag**.
+1. If you are creating a new tag, click **Create new tag**.

{% else %}

{% endif %}
-5. Use the drop-down menu to select the branch that contains the project you want to release.
+5. If you have created a new tag, use the drop-down menu to select the branch that contains the project you want to release.
{% ifversion fpt %}
{% else %}
{% endif %}
@@ -58,7 +58,9 @@ You can choose whether {% data variables.large_files.product_name_long %} ({% da
{%- ifversion fpt or ghes > 3.2 or ghae-issue-4972 %}
If you @mention any {% data variables.product.product_name %} users in the description, the published release will include a **Contributors** section with an avatar list of all the mentioned users.
{%- endif %}
- 
+ {% ifversion fpt %} Alternatively, you can automatically generate your release notes by clicking **Auto-generate release notes**.
+ {% endif %}
+ 
7. Optionally, to include binary files such as compiled programs in your release, drag and drop or manually select files in the binaries box.

8. To notify users that the release is not ready for production and may be unstable, select **This is a pre-release**.
@@ -145,4 +147,4 @@ Releases cannot currently be edited with {% data variables.product.prodname_cli
gh release delete
tag -y
```
-{% endcli %}
\ No newline at end of file
+{% endcli %}
diff --git a/data/reusables/repositories/auto-gen-release-public-beta.md b/data/reusables/repositories/auto-gen-release-public-beta.md
new file mode 100644
index 0000000000..1271ce25e0
--- /dev/null
+++ b/data/reusables/repositories/auto-gen-release-public-beta.md
@@ -0,0 +1 @@
+Automatically generated release notes are currently in public beta and subject to change.
diff --git a/data/ui.yml b/data/ui.yml
index 9e25b308f1..e5723c4bc2 100644
--- a/data/ui.yml
+++ b/data/ui.yml
@@ -166,13 +166,17 @@ product_sublanding:
learning_paths_desc: Learning paths are a collection of guides that help you master a particular subject.
guides: '{{ productMap[currentProduct].name }} guides'
more_guides: more guides
- no_result: Sorry, there are no guides that match your filter.
load_more: Load more guides
all_guides: 'All {{ productMap[currentProduct].name }} guides'
+ filter_instructions: Filter the guide list using these controls
filters:
type: Type
topic: Topic
all: All
+ guides_found:
+ multiple: '{n} guides found'
+ one: 1 guide found
+ none: No guides found
guide_types:
overview: Overview
quick_start: Quickstart
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 ec92a9bfc9..83b7c4955a 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:39fdcf201fd3edc4fca0c81d6f765e78a97d4abe15043f419f9048165d02cc8a
-size 525451
+oid sha256:778dd04ed3e7ce22df64618aa8e0ff2bf81ac65f53800b0ddc0fc5d3eaa713b1
+size 525482
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 8a301b8988..09029a3f0e 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:93fc733baed0758d99478a4f3df3b8d73ba9bae09231d23c984d6a41b81940cc
-size 868749
+oid sha256:94b90215f26c3fefe332fd9e605b63b8b003bf2dcef955414945b1d02dc5f1be
+size 868676
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 e20d59666f..73fbcedaa7 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:336b15a4782ae5915619154b0ebf40cb0cb8518dc438e0d480bc6230b5779305
-size 479295
+oid sha256:9354e74ff3181f022781ff1a102c5fb3269602209eba41c957cfbe13b9915a76
+size 479313
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 762244cdd6..035cd05073 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:da3e82bb3c8ff712dcc003f81fc3c89a1cc232ef5b3ed7344489b3e50ced20ef
-size 2127435
+oid sha256:d00a3fbc7dcfc87d08cc7f041adb1b8c0cc7239567be9f6748a85b032fd302d2
+size 2127631
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 ec119001ce..7aefb54804 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:20c28404e399c5e7408e58e6bc5ff71f7003fa21e6eac2c1850b229673ed53be
-size 433216
+oid sha256:2200db0bb16f033584fcae02452a0b86ceeffbee1fb9167a8049725f209bf6b7
+size 433305
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 18ee7f8fe9..4426f9a800 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:82d30a88933bb9a6d5fd1e3e8789470733c29af4ec9167c3bf5bdf283e57a63a
-size 1692793
+oid sha256:a917845564db044146e1d1be6e575c22f73ffd9fcdfba221321d5aed195ca8c8
+size 1692292
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 92a0285d00..2415011ae5 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:5a10b6762fcff278c37daa1097da763651aa07b431be3dcd92d02bb3c585d527
-size 194924
+oid sha256:6cea77a33e3d5e1e41d35cbdbc3591473d878fa9c372ba45df5025a44da2d0fb
+size 195046
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 9d8918b6a7..ca670a2849 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:fec5fcd1bcc05ab53068960a73978f2dc89c7414f62d1a70ca53bf31f723f269
-size 702566
+oid sha256:f7f33c5915f9d3403b6d7de82e2cee27bb23f2f317e679fdc2fe4b747a41885d
+size 702742
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 3f57e7460a..45a8f68f3d 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:65e73061a8bdb4f7304d3ce44ad37253a4afa8b20fafb1750b95a19c7afc6f2d
-size 545245
+oid sha256:67e3da0511eb218686d3511887273909897991a1c8fb46ae162ef67acb1d34a8
+size 545387
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 23ff1b0bc4..e4cc371446 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:99396933232cb06d7ed3ab603a8bb83b4eb567257d6b5fd2b87271a8d724cea0
-size 2880938
+oid sha256:aba96bce11cca0fed0874adc3e199a1aab6cd2edbba8c3f2ebd19ac4a725b76a
+size 2880356
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 4f2b34b2f7..5e09816fab 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:fcb1e8434acdc9a886eefa65c9374d6bd4f55ab17d3cf486d4371391b0644704
-size 456788
+oid sha256:ec356469cd32c9a116c50b46c4b9c7c5e98536bccc1bcc9f01ac11e458b2e2fa
+size 456790
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 8017807bfa..aac7ee8367 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:368b95e173a31200ac45bc69f024e7769f1f76d53d0189c50c3de490ab4318ef
-size 1905783
+oid sha256:a1c5b57687aa12aebb7bb0ad64419d207c074265f80293abb5331082818016a2
+size 1905939
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 7ee08dc127..21d47b6c1a 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:f645379f65ee98a66b1235c247d56c24665aef624cc376ec16f80b5989abdbb2
-size 545008
+oid sha256:95b52cd824cd64ac676800fae9272e40636c92e2909d585d87a4facfc23e85e3
+size 544801
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 25f688764e..f4988b9c16 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:0ab38fdceb61498ce8256addc3f8cd7c5f882913717a838e8ef72eade86f8288
-size 906534
+oid sha256:09b15699a1a59fedbed3011177ec6e24be1c1a4db079ec6ba923c076a0fcb001
+size 906616
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 2d117b841e..f2ec0377f7 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:5a28c75e4a21177034f5f3264b196f20f3fdd652c665eaccc6d453aa4dfc5c21
-size 499774
+oid sha256:653990eabba16f1b38d5379190717015c646a32b7b0ffaf67be252360c4f0b96
+size 500023
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 477a9f21de..e2b79e843c 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:9b865f2b1ae31621a23c78a60143c86100717253c87e489565e6849260716678
-size 2232482
+oid sha256:4bc7fa71b9d400f43c366ff7820bb7b890de9ae7605c7b721f51fdfae8b907c6
+size 2233011
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 29ade86fef..09b3eec0bc 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:ef7572c3f767d146081755059bcb57d64da2d72a7d89aeb3723c9f63cb118995
-size 453459
+oid sha256:483cc54a4a10a0bb5f8042f68a9439b11408333bca7a6c6841dbb0376a7f4557
+size 452585
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 9f302569ef..8b638c593a 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:135150efcc834eb36834636aeed82218441545911485ea4a3b1d9ed939f25ea1
-size 1766286
+oid sha256:df1c4e0bea018c4253e132a172bc4803998bc0e3aa349866ffe8d19fd0a90e9d
+size 1767014
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 61cc427f09..b1929126c0 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:61e2ce243d6a3cdb3309bba3adbf14f4eacf3dc55076170577c82ea37139eddc
-size 193735
+oid sha256:a25829d4a8e098ca1abc9140117ec533d9ecc9e04a21ada9d00674a208f8b49c
+size 193749
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 0b968ef436..b50928937c 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:5d01a077977ffcae36e05a8afc845cadda74b5687baed1ed027f2406532c7c05
-size 693976
+oid sha256:d62c6c1d6645cea6520b16928c21f8d0587149026ef5c31fbe3a4dd502be8816
+size 694293
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 d04e3a8d73..87a2627b49 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:d58ce548ecb38d7021de814feb38743952af613d16aad217c81faca8e29fde49
-size 567693
+oid sha256:3eb212141fe9165a115fba03bb6ba72f8726b7d7d48e140549158bff8439cf56
+size 567814
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 6c16ad19b2..b5aa6553e3 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:924b79d0d4bf5ee372e917537fa5fadb5fb802577fc9649cc82a44d0cb999b5f
-size 3007226
+oid sha256:660a7750a35c91f2d2aed8496cdd624e88142595ea0fd742b1d3335244cf4efc
+size 3007305
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 9f03458f80..cfac14b285 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:ddaa0f0acea9b4b1ef3e3b3188842680f14eaddd89962c2e669d794a8823e21c
-size 477659
+oid sha256:b917e836f83d9b279f4867d4e502d2dc5d5c934046d8ae1cb0c2f79e40220132
+size 477686
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 0e9e1c0dd9..d64479b632 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:917766b05221e002bae32e89ddb2d55af0bdeba20618a3014d66f6829ca8ff5a
-size 1992926
+oid sha256:1976dff2f780dd15084a7bc7034e1f630cda6ff4227c5d5e9e606566bdb99f89
+size 1994453
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 774fb8b3fb..045b9cebd3 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:c6062d3ead589c9ed59e2d3aaea5c51259b0751a23f119c8cb1851be4006c13b
-size 557413
+oid sha256:208b4c5054cae0b3c72886357cf09ec872ad9f46d34661be5f5b388554dae317
+size 557301
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 9843447ec6..979aa57153 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:fcdc165b8a28a72051175999732dcfedcf2c82f2d58bdaf18c4e303d2303d64d
-size 929277
+oid sha256:9b7d59d92598fd05416d52db1934166d00aace02aa3c1db40b49400af5d20cf9
+size 929395
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 68fdfdb7bb..7039e936ec 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:22c4079c3045b9ac17bcda60633428f15d7429bb324cb2393549e1a33923f5f0
-size 508477
+oid sha256:d65f868ee1a72564c50f41fac4856c24676e4f0b97c8e640d19801fa893aedae
+size 508420
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 61e600b0b4..b639f67399 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:65966352db7e305f291239aee4fd1563ca2257d48ffc07bf51141c6fb4448bd4
-size 2284583
+oid sha256:509c81c7ddb0c24bdd049f9a105ac223cc2cd543d27bbd3e43a7ee054c1ce84d
+size 2284434
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 029c77f530..963b7d373a 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:30019775c46efaed7cdf092e080cf99f51042f892c7d260e8853940f2487e8ae
-size 462675
+oid sha256:262ed26ee8aac597deee095f393b65542c2962828d2f5f1c0fe2a1618b752400
+size 462911
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 38e52bcd0c..768254f9c7 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:36276d81cdb42c5061ff47a55f80b9db2df8c7bcec7fe412a787b7ff6c468d63
-size 1805362
+oid sha256:95e6f982fbad8e683afc091b3b3e2b2833fbb17299ec5edc2e804021c2faa0fa
+size 1805930
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 32cf950e59..1dbe03d6b9 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:6e35f97cf38a1e90df35ad97119515eba600cf8ea547ee82164128ab45e51c8d
-size 193679
+oid sha256:a1d2d0ee3ac0921920711aaa229cc83733d06f381edd3dced465b04ce1790845
+size 193683
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 426cabeb68..9341684d9e 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:70b8ba8dfee0b5b5cb44d4990aee5d13adcfea1109b8d1fe460804262c2e3585
-size 694126
+oid sha256:02aa04118f2e6bbc2a1378a01badc0b5aade3461e22e0c29890479f547c1c2fe
+size 694261
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 3a2f9c63fa..8d77549008 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:f67189a53ba7f12efd2e04f07891e9c2d7c98acd332e706136d8581b3f151df2
-size 579903
+oid sha256:eb333ca449f828df5b37b6a9551b8ecbd348fab7db44832101015a76f1dcb658
+size 579925
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 f2b6c97f16..705049a6a7 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:4f2d5850ced27c07e98ce51ba95249494ba5e50fb8efa3ca285e9bfbcc7e5dcc
-size 3072963
+oid sha256:5e08bb5c9b423ab1f6149d1758dba34277eac026f7ac8785fb0f2aaad813fca2
+size 3074091
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 c719c150e5..1368e5b2b8 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:4e12b10c2087d718f3a458223e9d2ba1040fa0722611f9757ac4f62553a1c802
-size 487086
+oid sha256:053040cc3676ffdc4dc4decf015eaace6975c10141108c52214926cdf426ba35
+size 487095
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 1b9871181a..511702e470 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:81bb6cb386ef9f2b62bdcf1ed8b648fc3c0d3ecb576f3e559ebb49f0c8763c4b
-size 2036857
+oid sha256:ea452b16537956f71f4524c087747a86710aa697998129bfade54082e8f1ad0c
+size 2036854
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 35ea8c76ff..e66078c0f6 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:d7ab75388591ca5b08b89a29b9bf7d4b9d21377863a5ff91dd5549ef8786eda1
-size 567840
+oid sha256:4cfe7416a2a9b0feb1606f1a031a8166369818b07f88ce7fde3f2e7fe149f9c2
+size 567912
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 8a3ea9fff4..a34276ff50 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:e14265541f9152fd998cb242fa8f8e385b6f84ac281519924f0a0f0220296974
-size 949264
+oid sha256:f12e2927d050a5348ae60f210a973c1b541a65a7d862dd26ef9c01d8648928d4
+size 948788
diff --git a/lib/search/indexes/github-docs-3.2-de-records.json.br b/lib/search/indexes/github-docs-3.2-de-records.json.br
index 2dd81e55e7..c648f6f8b3 100644
--- a/lib/search/indexes/github-docs-3.2-de-records.json.br
+++ b/lib/search/indexes/github-docs-3.2-de-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:c4c215df91137e777ddf85b5c0f4503f525060a49345976981b5cdd72012a1b2
-size 517516
+oid sha256:1de71fad06fe6a6e345abf1a9d355a9748c9c2816ad0edfe74e27232111ee6c7
+size 517545
diff --git a/lib/search/indexes/github-docs-3.2-de.json.br b/lib/search/indexes/github-docs-3.2-de.json.br
index 85abfa01ee..7ac56d4e0e 100644
--- a/lib/search/indexes/github-docs-3.2-de.json.br
+++ b/lib/search/indexes/github-docs-3.2-de.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:ff51236fe4ab0843713ce5afd0b9b17f8b84d0987d2d0076cff1c53d158eecd2
-size 2331933
+oid sha256:04038b3e3ef7735e664a267a718e461c2b67bd457b2a18c903734f7d69c5ac66
+size 2332847
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 e8683e906f..d44bd5d351 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:03df8c634d0927883ba94b4b1ff7b0855d023b3f07480cea01e3f40413210409
-size 471434
+oid sha256:f78d41310a985166819f60af150f7ee9ddf3a0cd482ebf198aa47b007255db7b
+size 470638
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 c57c835484..726fbeb140 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:60b86615a45bfd6307da5eb08f55d9167af234869b6c5f5d739a3ad373ddeccc
-size 1838147
+oid sha256:82a25e43ca8fff00d1ea957d3d6163d4da2801c822402fd214a441e0de551ac2
+size 1837624
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 f4552e755f..24d78e2018 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:9e77566a720589c4c786a902aeb4dbff8c4e6fdf0e17e3e96de6db64135fb932
-size 193542
+oid sha256:2c75bd6890b94e4c9aacc1b0a193ce8c05ee5990f3a4d2a702a242e5b2ad5184
+size 193578
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 1a2df1592b..7846e61576 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:c62541f33a41ae82b98dbc49f53a0b8d4c87a9b8b353a86e4fcd19a12ae5ea9e
-size 694010
+oid sha256:5a65aacb7c55346dd3dd13b8c5aa03f958e706450edae51f1d85e10011ac1d2c
+size 694439
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 d96cb0e907..fc7c8c0510 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:87e874c78b90fec5453e74ac457410765e8783bce2c2aa70bf3b140c6b1fe1c2
-size 590227
+oid sha256:c748106303af7dd4a41c6945d888aef1db79bbc2f6c05dfffcfdc74f0b5f74f9
+size 590298
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 b267931ebd..caa966c7a9 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:6518c81e5db006f46918cd3bd84f4e280844bc822e93a5d5fb60010ae2eda792
-size 3139838
+oid sha256:1e4ae0c56698207a2d71ebc6524b4aa76d8241ca9c603431f6eca9468393c3e4
+size 3141466
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 801ce63064..e580073708 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:223ce5612a68bbe932f22755c5b103ea6e6d8a792d8c26212f6d392a1beffa25
-size 496588
+oid sha256:417ddcec5a7f7bca559ece70f3880db216f05fbd3b09edc530c9c07ea7fda5a4
+size 496728
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 56eb26143d..47f2db44cb 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:a78dc9ee5146ba9aafadcf3debb341bcd8e96f9948944e4adb6d0b80b1a932db
-size 2077660
+oid sha256:8fb490a1e4d9478afbbcbb5c1fa079df4b31bb39828811aa9621b32146d36372
+size 2078413
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 3dd02f7076..cd5bd99bca 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:75ca66f850431d0fd02844787ec3a12fd082db96950c1ddfca51277520ef363d
-size 770723
+oid sha256:0a0d196d7f52dee993eeba628ea29ff82fc68077b9d0b9599191204c0e222885
+size 770989
diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br
index 7003d64dd5..ec17b17529 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:4aac3baa354a2db91b363cbda311929fcb7e8dc73301290968b4becb23b60702
-size 1171309
+oid sha256:1fa7b1f114354b4a81224394bd1e366d0c492270ce37f9606e6ef3779728a387
+size 1171437
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 dd693a6932..aa33a4bd8f 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:8873d1f71ad78eaa1fec00f41ce20f811429de310403132e6c52cbb33231164c
-size 690742
+oid sha256:9171904cf2d2872aeb402f6fd17924427b87d2af41e2e1feddfff78a9ae21f57
+size 690799
diff --git a/lib/search/indexes/github-docs-dotcom-de.json.br b/lib/search/indexes/github-docs-dotcom-de.json.br
index da5f4c9fda..0c4d361ace 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:46eb67974d1f75224094f66ecf5dd933fdfc67a0ee5c8e187bd624946e48b5c5
-size 3125917
+oid sha256:593e6dbec00823a614efd371a8755ba36dc6817e5cb8630129f75f2e96419a02
+size 3124986
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 1a9d1d4fce..5a38dffa2b 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:004185591683cb9fa318bdd5bd7c78c838dd1fe83f726d82ceac3c866e0513e3
-size 636788
+oid sha256:83fc679e11b2098de9b7a5e87422c5d82bdcb99cd5042306ced249658b3980d0
+size 636346
diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br
index 903c4d566d..d26d5d4602 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:45ad81e8a26939dee397eb45aea60a40605569170f50ad32ee97bc96c1f8c5df
-size 2418819
+oid sha256:17d4859d1810717346f636aa3b7282dfa6641c702cd85f6c1b8291ce1d529381
+size 2416779
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 0295c29762..a3deaad4ea 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:d4dc772890d7759109db2021fea33ae54a05b2bff532fec5b90edf0f917cbde6
-size 205180
+oid sha256:64eedd2aa3ed45717adb903084f4a16606f789d14b7e5727caabb1ffac7847ee
+size 205253
diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br
index 4384e3f127..d40ad77926 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:7cbc5ede31f74e3755c30b5cea43af61979f01f4cb6a677782805e650af83082
-size 650904
+oid sha256:41b5b4ece8faa897f2c1bd51f7d313f698d484c9548e3e9c73bdba037e33edca
+size 651221
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 b79ccb2111..fd74b3e62e 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:fa1ba6f446e061304d463fbbe9d3a46649a0c7bfb0c512bf1ba811ec1fa6ac5c
-size 795328
+oid sha256:75d6f4f6296143e0222ff527ee0d53b926d9d2a6efe040e63f92ca00080845a2
+size 795598
diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br
index e243c423c3..8d68236106 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:20e2e3dcc7d6aba9fa8fc60765da578e2ca349a2db50594b87b5d67f401dafb5
-size 4152479
+oid sha256:5ed2896687cf48e7062d16f5cbbdb31c8fba0904502cb44bc47c85f7f8dac9f4
+size 4153280
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 e262680564..df1d9b23e1 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:f46c3581c56b140a90611efc36195ddfb0d02e20db4cf760eb177e7ac0abfcf9
-size 669534
+oid sha256:932bee611d7728c48db980712edb120e2aad9ed9cf2692ee9cc6cb4ed916d115
+size 670002
diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br
index d010b3c4c7..8a273e720e 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:7b47bf4891b07773cc321ca5f2930ee9a3209d897c553410fc12d2fc55078f34
-size 2750833
+oid sha256:fdeff46942c01493f5f80e19008580a49b8636eb918e8f8cb8a8974642193a03
+size 2752635
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 eccb812f60..f0f6ace567 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:310dcf30493884a1dea6647cb41ccc7c05a732181b6ab7361384a5491f88f673
-size 433696
+oid sha256:c6796a1abf0c9be9a2cbefd404c6af0901b069a31d56cfb4a77fb4f066835b90
+size 433945
diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br
index f228d3c69c..35af43cb89 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:6d36ff88b22a3d85a7d945562d0d71c089d22e1f7015bbb47f57f10b3ad46710
-size 692822
+oid sha256:cb7c94014dfae5af20a0ec0fdfbf79961c27a57b128212ccf0dfbad0639b6144
+size 692254
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 7453006d0f..e36c509c1e 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:22e00eafb6b3dbe8fadbcfac3648f999f058cce233ea4de93412f246711fb6a7
-size 400585
+oid sha256:0686472460748850c2b34d93adf28a38a201cc382eeaad4b1bd742ae06bd05cb
+size 400806
diff --git a/lib/search/indexes/github-docs-ghae-de.json.br b/lib/search/indexes/github-docs-ghae-de.json.br
index 7bdfc5439e..11f7a1372b 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:1616d8a77aef14715a3ba0d6bac6fbf7c4c0a95ac077094b676726acab78e7e3
-size 1744165
+oid sha256:8a1f86b6889eefafddd049ea8daf98f36011906ec2fb17b08a7cbdf8f3aba66f
+size 1742076
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 299f81899d..931a27fd31 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:6a01f886511b4f84a342296add408c8b5a2c4e1f483667bc2fc1fba636489dc5
-size 363375
+oid sha256:6f18b1b85510915db1310f0ac2c1439268e384fca1705bff683ce7c3e56737d8
+size 363703
diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br
index b14ae0e47a..dccb23cccc 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:a5637a022a45628f94b0703f573d0acf0fee749dd6f74c7518844bac1e50d816
-size 1352245
+oid sha256:8ee26dfeec1b05f28bbfc402427b31c740916e14a458dbf6c207f6a564b43a10
+size 1351793
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 9c9a1a78f6..102dc4f37f 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:3f756f9d0bcca425afcd4e51a0e18d76c07ab298a104105c8aa72936b6a9f308
-size 130856
+oid sha256:1bd81c59be7695810573a01695386a0dd4593e6ff010126c83613d38c07a8711
+size 130848
diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br
index f90acc4153..29a0088d3f 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:59d32fbf185031232d3d526e766b567eb4e84ece39a2b3e26554ab67d1cc2672
-size 420252
+oid sha256:ce4d721fa100afa8e228a3dcd4f6713163d60b1cccbf4a9415ef39154180f796
+size 420205
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 7c169a7fea..07aaa23672 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:3d03b3b58099b325485725de8cd17f0052f8f1cd474ebfc5e7be81733c5f5be2
-size 453022
+oid sha256:cb591e061ba3efb19cc02d4cf7ca04d81fa4b10eadd449885bb71e110cb1f28f
+size 453283
diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br
index 4ec90ab22a..63d33af11a 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:76c185d4fbb77f00c8b685168035b0f2ac1565c97df0a42051ff4e35a2c6c1b1
-size 2299236
+oid sha256:0aa307cedf1a2ad63785bb80135012717bbed4e38d403ff94797400fe087e259
+size 2296683
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 da8184062e..869b32bb26 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:c0ed65219b78a3d3697d301d502ba39ac57459e9914c0a886b854a7b15bbadb0
-size 384748
+oid sha256:5349f7ee86ce429e1de7912d42b1dd7c27b030874ce46cea479e2884e742213b
+size 385069
diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br
index 21179ca3b8..46ceb5e414 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:733b56a709669c8f9f1341bd1d9413a6c62e9f1ccc127ce62fc41ac4b5894474
-size 1539578
+oid sha256:db2a0b8cdc9bbdd23d18bedd3a5654fba9abda42c3d4569f6d0f46ee7b6d2a52
+size 1537375