diff --git a/content/actions/quickstart.md b/content/actions/quickstart.md
index fc6d84a1038b..47573e2c74ec 100644
--- a/content/actions/quickstart.md
+++ b/content/actions/quickstart.md
@@ -1,95 +1,71 @@
---
-title: Quickstart for GitHub Actions
-intro: 'Try out the features of {% data variables.product.prodname_actions %} in 5 minutes or less.'
-allowTitleToDifferFromFilename: true
+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:
- - /actions/getting-started-with-github-actions/starting-with-preconfigured-workflow-templates
+ - /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: '*'
ghae: '*'
ghec: '*'
-type: quick_start
+type: overview
topics:
- Fundamentals
-shortTitle: Quickstart
---
-
{% data reusables.actions.enterprise-beta %}
{% data reusables.actions.enterprise-github-hosted-runners %}
-
-## Introduction
-
-You only need a {% data variables.product.prodname_dotcom %} repository to create and run a {% data variables.product.prodname_actions %} workflow. In this guide, you'll add a workflow that demonstrates some of the essential features of {% data variables.product.prodname_actions %}.
-
-The following example shows you how {% data variables.product.prodname_actions %} jobs can be automatically triggered, where they run, and how they can interact with the code in your repository.
-
-## Creating your first workflow
-
-1. Create a `.github/workflows` directory in your repository on {% data variables.product.prodname_dotcom %} if this directory does not already exist.
-2. In the `.github/workflows` directory, create a file named `github-actions-demo.yml`. For more information, see "[Creating new files](/github/managing-files-in-a-repository/creating-new-files)."
-3. Copy the following YAML contents into the `github-actions-demo.yml` file:
- {% raw %}
- ```yaml{:copy}
- name: GitHub Actions Demo
- on: [push]
- jobs:
- Explore-GitHub-Actions:
- runs-on: ubuntu-latest
- steps:
- - run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."{% endraw %}
- - name: Check out repository code
- uses: {% data reusables.actions.action-checkout %}{% raw %}
- - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- - run: echo "🖥️ The workflow is now ready to test your code on the runner."
- - name: List files in the repository
- run: |
- ls ${{ github.workspace }}
- - run: echo "🍏 This job's status is ${{ job.status }}."
-
- ```
- {% endraw %}
-3. Scroll to the bottom of the page and select **Create a new branch for this commit and start a pull request**. Then, to create a pull request, click **Propose new file**.
- 
-
-Committing the workflow file to a branch in your repository triggers the `push` event and runs your workflow.
-
-## Viewing your workflow results
-
-{% data reusables.repositories.navigate-to-repo %}
-{% data reusables.repositories.actions-tab %}
-1. In the left sidebar, click the workflow you want to see.
-
- 
-1. From the list of workflow runs, click the name of the run you want to see.
-
- 
-1. Under **Jobs** , click the **Explore-GitHub-Actions** job.
-
- 
-1. The log shows you how each of the steps was processed. Expand any of the steps to view its details.
-
- 
-
- For example, you can see the list of files in your repository:
- 
-
-## More starter workflows
-
-{% data reusables.actions.workflow-template-overview %}
-
-## More complex examples
-{% data reusables.actions.link-to-example-library %}
-
-## Next steps
-
-The example workflow you just added runs each time code is pushed to the branch, and shows you how {% data variables.product.prodname_actions %} can work with the contents of your repository. But this is only the beginning of what you can do with {% data variables.product.prodname_actions %}:
-
-- Your repository can contain multiple workflows that trigger different jobs based on different events.
-- You can use a workflow to install software testing apps and have them automatically test your code on {% data variables.product.prodname_dotcom %}'s runners.
-
-{% data variables.product.prodname_actions %} can help you automate nearly every aspect of your application development processes. Ready to get started? Here are some helpful resources for taking your next steps with {% data variables.product.prodname_actions %}:
-
-- "[Learn {% data variables.product.prodname_actions %}](/actions/learn-github-actions)" for an in-depth tutorial.
+## Overview
+{% data reusables.actions.about-actions %} You can create workflows that build and test every pull request to your repository, or deploy merged pull requests to production.
+{% data variables.product.prodname_actions %} goes beyond just DevOps and lets you run workflows when other events happen in your repository. For example, you can run a workflow to automatically add the appropriate labels whenever someone creates a new issue in your repository.
+{% ifversion fpt or ghec %}
+{% data variables.product.prodname_dotcom %} provides Linux, Windows, and macOS virtual machines to run your workflows, or you can host your own self-hosted runners in your own data center or cloud infrastructure.
+{% elsif ghes or ghae %}
+You must host your own Linux, Windows, or macOS virtual machines to run workflows for {% data variables.product.product_location %}. {% data reusables.actions.self-hosted-runner-locations %}
+{% endif %}
+{% ifversion ghec or ghes or ghae %}
+For more information about introducing {% data variables.product.prodname_actions %} to your enterprise, see "[Introducing {% data variables.product.prodname_actions %} to your enterprise](/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/introducing-github-actions-to-your-enterprise)."
+{% endif %}
+## The components of {% data variables.product.prodname_actions %}
+You can configure a {% data variables.product.prodname_actions %} _workflow_ to be triggered when an _event_ occurs in your repository, such as a pull request being opened or an issue being created. Your workflow contains one or more _jobs_ which can run in sequential order or in parallel. Each job will run inside its own virtual machine _runner_, or inside a container, and has one or more _steps_ that either run a script that you define or run an _action_, which is a reusable extension that can simplify your workflow.
+
+### Workflows
+{% data reusables.actions.about-workflows-long %}
+{% ifversion fpt or ghes > 3.3 or ghae-issue-4757 or ghec %}You can reference a workflow within another workflow, see "[Reusing workflows](/actions/learn-github-actions/reusing-workflows)."{% endif %}
+For more information about workflows, see "[Using workflows](/actions/using-workflows)."
+### Events
+An event is a specific activity in a repository that triggers a workflow run. For example, activity can originate from {% data variables.product.prodname_dotcom %} when someone creates a pull request, opens an issue, or pushes a commit to a repository. You can also trigger a workflow run on a schedule, by [posting to a REST API](/rest/reference/repos#create-a-repository-dispatch-event), or manually.
+For a complete list of events that can be used to trigger workflows, see [Events that trigger workflows](/actions/reference/events-that-trigger-workflows).
+### Jobs
+A job is a set of _steps_ in a workflow that execute on the same runner. Each step is either a shell script that will be executed, or an _action_ that will be run. Steps are executed in order and are dependent on each other. Since each step is executed on the same runner, you can share data from one step to another. For example, you can have a step that builds your application followed by a step that tests the application that was built.
+You can configure a job's dependencies with other jobs; by default, jobs have no dependencies and run in parallel with each other. When a job takes a dependency on another job, it will wait for the dependent job to complete before it can run. For example, you may have multiple build jobs for different architectures that have no dependencies, and a packaging job that is dependent on those jobs. The build jobs will run in parallel, and when they have all completed successfully, the packaging job will run.
+For more information about jobs, see "[Using jobs](/actions/using-jobs)."
+### Actions
+An _action_ is a custom application for the {% data variables.product.prodname_actions %} platform that performs a complex but frequently repeated task. Use an action to help reduce the amount of repetitive code that you write in your workflow files. An action can pull your git repository from {% data variables.product.prodname_dotcom %}, set up the correct toolchain for your build environment, or set up the authentication to your cloud provider.
+You can write your own actions, or you can find actions to use in your workflows in the {% data variables.product.prodname_marketplace %}.
+{% data reusables.actions.internal-actions-summary %}
+For more information, see "[Creating actions](/actions/creating-actions)."
+### Runners
+{% data reusables.actions.about-runners %} Each runner can run a single job at a time. {% ifversion ghes or ghae %} You must host your own runners for {% data variables.product.product_name %}. {% elsif fpt or ghec %}{% data variables.product.company_short %} provides Ubuntu Linux, Microsoft Windows, and macOS runners to run your workflows; each workflow run executes in a fresh, newly-provisioned virtual machine. If you need a different operating system or require a specific hardware configuration, you can host your own runners.{% endif %} For more information{% ifversion fpt or ghec %} about self-hosted runners{% endif %}, see "[Hosting your own runners](/actions/hosting-your-own-runners)."
+
+ {% data reusables.actions.workflow-basic-example-and-explanation %}
+
+ ## More complex examples
+ {% data reusables.actions.link-to-example-library %}
+
+ ## Next steps
+
+ - To continue learning about {% data variables.product.prodname_actions %}, see "[Finding and customizing actions](/actions/learn-github-actions/finding-and-customizing-actions)."
+ {% ifversion fpt or ghec or ghes %}
+ - To understand how billing works for {% data variables.product.prodname_actions %}, see "[About billing for {% data variables.product.prodname_actions %}](/actions/reference/usage-limits-billing-and-administration#about-billing-for-github-actions)".
+ {% endif %}
+
+ ## Contacting support
+{% data reusables.actions.contacting-support %}
+{% ifversion ghec or ghes or ghae %}
+## Further reading
+- "[About {% data variables.product.prodname_actions %} for enterprises](/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/about-github-actions-for-enterprises)"
+{% endif %}
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 04bb151174a9..072467be26b4 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:5c6554f20dbb30fe63648b4f254c2bb07a1bfd73e54929be3c2b0b22af2b43c4
-size 795308
+oid sha256:4173f64b96b576c0573389389b406247430714ac8fe50ce6150023ba57854bda
+size 795332
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 5a53970dbf66..3970809bc41e 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:50a908fe6956fc188661463f7e356e016cda90b32cc0a2db2adb3cc7f6adab06
-size 1647745
+oid sha256:0bc2e601436868f7fb6df7c27026e93728660b87aaea731c92fe4c63e020a6a1
+size 1647928
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 d98d2bd578fb..acd63166f3f1 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:02a6a94bd531fbb7e373658a9a2a39ae11cd2b6805db6e3567de91be5ec7f435
-size 1094154
+oid sha256:e95bfb626b991cbc53becd040f767052d9a4ddfb2491c0460d06fe463cbbbbf7
+size 1094077
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 11ade8fa4f92..2f59037e65ae 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:276882cdfeb3aa6633b84c306f0a52e2b1a010c24e9763bc82f95831579672bb
-size 4437230
+oid sha256:556b60b6ab6b04a3a470383c948f904ff7ebcdc8a61e49de747fbe1e8d32be45
+size 4436765
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 953263b94815..b28a023a1ef8 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:3884867a2d36348b11be07c84d7f471a6a2aff591954247d6d40ac1f01166ff2
-size 734535
+oid sha256:7de6ebb1d2a60953f94f5a3b1038f49bf5a7510d56454d824e711c43a0316a0f
+size 734534
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 b99130a18c87..3a0b529ce777 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:a63ca466af6f7ff52c2332596123b6780c78e41d3180b39e482da823a7d805b0
-size 3130592
+oid sha256:439fd3f773d8aabe3b9e85abfff9b5e4e5b513fafcff057d9f6417443e893583
+size 3130636
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 7b1f3a67719c..7d0ed2a77110 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:7e82177e84cbc07d8de38279747353142ad35a340e980e0d18ac4843a3d8b9af
-size 810997
+oid sha256:c107721439e2dbb9faf8ffd29dd01291827e19740d1af685a9484888c527712d
+size 810973
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 479196803f9f..41eb029b12c0 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:a10e66fb076edc2ca5fbe6d3e788d4fe59f72c1a7f86ab9dc6774a7d6bd05479
-size 4451431
+oid sha256:a7dafcc15f5a1ecdae30c9ff7344da4590c64b9dd16f488ac2fd86a484f30303
+size 4451369
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 721e479b2163..bf35fc04c1b9 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:dbbb5ed3b3ef797a44dcd845df0eaeef22a8ec32eb0a2f937867cb95dab4c05e
-size 723513
+oid sha256:28ae93d83fc123ea345c7472762f8f685cf450d8d126663db949d1959a957d57
+size 723266
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 dfd92c2cefa0..bed9caa67e65 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:97d1943606e12b577a3201894f3e760e1d184adaed62a57d7997f3a1693748dd
-size 3026257
+oid sha256:0aaa57c03f3d78ab754bd830dcddf96396597cac482e044e4ffb23bdebd5c833
+size 3026291
diff --git a/lib/search/indexes/github-docs-3.3-cn-records.json.br b/lib/search/indexes/github-docs-3.3-cn-records.json.br
index 4d154049fae6..74eefda00c2a 100644
--- a/lib/search/indexes/github-docs-3.3-cn-records.json.br
+++ b/lib/search/indexes/github-docs-3.3-cn-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:81acd065f11b430475d798ca88db6362d6a7b5911524cd1889297f25a266761d
-size 820836
+oid sha256:1ab61f92a2d9b901836a44c50e462b5c8a5a05c39119cc1af63f370f21f2ffd1
+size 820843
diff --git a/lib/search/indexes/github-docs-3.3-cn.json.br b/lib/search/indexes/github-docs-3.3-cn.json.br
index 3ef609c04c04..c4751ee6090e 100644
--- a/lib/search/indexes/github-docs-3.3-cn.json.br
+++ b/lib/search/indexes/github-docs-3.3-cn.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:750d67a3d6ba0f5b9a709f1c4cf6ba90315231900c91bff997d790f60696bac0
-size 1695453
+oid sha256:b7292309b5b4a62a11547cfcc182244857b81e5c40ad397c0ffbc1fbb1863f9a
+size 1695669
diff --git a/lib/search/indexes/github-docs-3.3-en-records.json.br b/lib/search/indexes/github-docs-3.3-en-records.json.br
index 800bf5bb7925..8978a433ce7d 100644
--- a/lib/search/indexes/github-docs-3.3-en-records.json.br
+++ b/lib/search/indexes/github-docs-3.3-en-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:2089a54fbfd6366f7d81a65d0ffd1e59ca050ac771e8bdd97edac0182b26932b
-size 1128879
+oid sha256:177b4212a32ade003c5b5ebba5415f44deb7af65df2db2abc2cf11a1cbcd669e
+size 1129313
diff --git a/lib/search/indexes/github-docs-3.3-en.json.br b/lib/search/indexes/github-docs-3.3-en.json.br
index 97b44cbde7f3..2988fe05c17c 100644
--- a/lib/search/indexes/github-docs-3.3-en.json.br
+++ b/lib/search/indexes/github-docs-3.3-en.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:0967f88bba28a312918894066e046b2a8e382fd2878007414171171499e664f4
-size 4538916
+oid sha256:1aafcfe32fc8af593edd722a3aaba2e4b6825176af75d614bf113e1c266dd3b2
+size 4538201
diff --git a/lib/search/indexes/github-docs-3.3-es-records.json.br b/lib/search/indexes/github-docs-3.3-es-records.json.br
index 23a36bee102f..484be755cd22 100644
--- a/lib/search/indexes/github-docs-3.3-es-records.json.br
+++ b/lib/search/indexes/github-docs-3.3-es-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:d83df52055326f81910b55fb4ff5881a450e4e446127b38c4cd704cdc56b31b8
-size 755794
+oid sha256:e8b9bd19f77460b3bedbd279de1467c6837513ba03b1b23059256c3e92a5c715
+size 755650
diff --git a/lib/search/indexes/github-docs-3.3-es.json.br b/lib/search/indexes/github-docs-3.3-es.json.br
index dcd8cb2ac1f4..fdeb1bfde843 100644
--- a/lib/search/indexes/github-docs-3.3-es.json.br
+++ b/lib/search/indexes/github-docs-3.3-es.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:aac53539b5c0e4cd9ffa0dd033484c43d7a552b617223637e3d7ee84cc01451b
-size 3215009
+oid sha256:603d808bc2dd1c75219278a870562b2e58678f01e06cac36b7538eb5ca0bd73d
+size 3214915
diff --git a/lib/search/indexes/github-docs-3.3-ja-records.json.br b/lib/search/indexes/github-docs-3.3-ja-records.json.br
index a104e3735657..caf154f3edbe 100644
--- a/lib/search/indexes/github-docs-3.3-ja-records.json.br
+++ b/lib/search/indexes/github-docs-3.3-ja-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:7e60d34fc24fa98f1b1d9ecc7af5c46366593eb025cc1b45e6691b7652dd23a3
-size 836264
+oid sha256:ae675cc4e279b5a8f78c715637a7efa6a7067401e61609a3c75a6dbf49d032f5
+size 836409
diff --git a/lib/search/indexes/github-docs-3.3-ja.json.br b/lib/search/indexes/github-docs-3.3-ja.json.br
index fefb1a50195c..a21db34d2970 100644
--- a/lib/search/indexes/github-docs-3.3-ja.json.br
+++ b/lib/search/indexes/github-docs-3.3-ja.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:38eece9205e4712a813766aa0aa69b88faf2a47438b41318a4c2200fd404b7f8
-size 4587783
+oid sha256:ca8ab12e37e68723789bbb0e984b52d35a01d1f1abd3568bb3f7b276d1b7272d
+size 4587675
diff --git a/lib/search/indexes/github-docs-3.3-pt-records.json.br b/lib/search/indexes/github-docs-3.3-pt-records.json.br
index dccb30d026ec..1bed70abd6c1 100644
--- a/lib/search/indexes/github-docs-3.3-pt-records.json.br
+++ b/lib/search/indexes/github-docs-3.3-pt-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:d6f2453588d1815beb85de2602594d2935761ae1bc57013823343632b42d4fa4
-size 745103
+oid sha256:1ee04dea782583a60e64b9647a1d23472eec2d90949af4aab88ad29f0bac9e5f
+size 745023
diff --git a/lib/search/indexes/github-docs-3.3-pt.json.br b/lib/search/indexes/github-docs-3.3-pt.json.br
index 17b9c19448ae..eb9161960bd7 100644
--- a/lib/search/indexes/github-docs-3.3-pt.json.br
+++ b/lib/search/indexes/github-docs-3.3-pt.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:544351a66fc5a7c8a84281d063aac0588e1576f96e29dfb16e6be8114a2fe55e
-size 3111749
+oid sha256:9189d38503d9eb268b830c9fc595f2d6e990a4f24fb91eac0d3deb3518acda5a
+size 3111805
diff --git a/lib/search/indexes/github-docs-3.4-cn-records.json.br b/lib/search/indexes/github-docs-3.4-cn-records.json.br
index 40cfedb97aa6..3732d47b5213 100644
--- a/lib/search/indexes/github-docs-3.4-cn-records.json.br
+++ b/lib/search/indexes/github-docs-3.4-cn-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:8e4e58851fe91ddbbb67b65115e0eceb3bf655a77bf077ef1bf5d08002bc0628
-size 823393
+oid sha256:5b091ace5ee86d34822d0b4be46bdae2385c4a1a81346d2b86af7a90e97c28b0
+size 823368
diff --git a/lib/search/indexes/github-docs-3.4-cn.json.br b/lib/search/indexes/github-docs-3.4-cn.json.br
index 99948eaa5450..d247c7f4f419 100644
--- a/lib/search/indexes/github-docs-3.4-cn.json.br
+++ b/lib/search/indexes/github-docs-3.4-cn.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:d65d065c5e30affd752118321b31dbfebae80084ca85a562ae1fac6b4bb7dbc9
-size 1711342
+oid sha256:9927a9c04e2b9ec527ac79b530337a029597a53d165f91f2a89387ac06295e89
+size 1711352
diff --git a/lib/search/indexes/github-docs-3.4-en-records.json.br b/lib/search/indexes/github-docs-3.4-en-records.json.br
index 098e4d2da03c..63ef94ea9897 100644
--- a/lib/search/indexes/github-docs-3.4-en-records.json.br
+++ b/lib/search/indexes/github-docs-3.4-en-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:60cb0c0eb5901a369de471552578f09695a2715f40c54f8345a344c07825183b
-size 1140705
+oid sha256:154eaadd32955eca839df73a863fe284e7103619f88521371653433137ad5ef7
+size 1140757
diff --git a/lib/search/indexes/github-docs-3.4-en.json.br b/lib/search/indexes/github-docs-3.4-en.json.br
index 628cbd7f6447..615a6fd30e3a 100644
--- a/lib/search/indexes/github-docs-3.4-en.json.br
+++ b/lib/search/indexes/github-docs-3.4-en.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:b89a0aeaee84e4c2df9385b26f721dd364c3c78b6de1ca13353433e62a5fa686
-size 4597185
+oid sha256:d553941f8f3944f253197a55076c5119792fc2482faa4893164ef07153c2e7f1
+size 4597916
diff --git a/lib/search/indexes/github-docs-3.4-es-records.json.br b/lib/search/indexes/github-docs-3.4-es-records.json.br
index d86ddc857d47..44d75f66878c 100644
--- a/lib/search/indexes/github-docs-3.4-es-records.json.br
+++ b/lib/search/indexes/github-docs-3.4-es-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:b10c295013bb13d0df66c7cd589d0cde5c292f2396dfdb0cd86e7c19d9b2a35e
-size 760448
+oid sha256:189f047310e501dac8a597379dd63c4df5c2e6e49cc91977b03328f8b719b507
+size 760428
diff --git a/lib/search/indexes/github-docs-3.4-es.json.br b/lib/search/indexes/github-docs-3.4-es.json.br
index 2c50fcaa6cb6..d095dbe54a21 100644
--- a/lib/search/indexes/github-docs-3.4-es.json.br
+++ b/lib/search/indexes/github-docs-3.4-es.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:cedde3504ffed353f2beba07ddd325053706e407320647d0333537bfee8775db
-size 3238456
+oid sha256:4d986d02547bc01b0f4b137df40613dae57c26aef7a53892e3020591d316e066
+size 3238400
diff --git a/lib/search/indexes/github-docs-3.4-ja-records.json.br b/lib/search/indexes/github-docs-3.4-ja-records.json.br
index 4caa62b7b60f..a30fd9cc3b2b 100644
--- a/lib/search/indexes/github-docs-3.4-ja-records.json.br
+++ b/lib/search/indexes/github-docs-3.4-ja-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:c07b18d9426eb09ed3b410bcb290dc6a9ad21e08973790b20dafb00c861ec863
-size 839698
+oid sha256:d15cb070c9e589153ebeb4560e8144a386a8bfa0700fd6c8fc9d627bcbe085b1
+size 839764
diff --git a/lib/search/indexes/github-docs-3.4-ja.json.br b/lib/search/indexes/github-docs-3.4-ja.json.br
index af162b67527b..a5d108038cf8 100644
--- a/lib/search/indexes/github-docs-3.4-ja.json.br
+++ b/lib/search/indexes/github-docs-3.4-ja.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:c3fbfea2813098d352190b37207c7b3eadb13572d27de04fa90b5c67e0bbb74e
-size 4619773
+oid sha256:4de924bd7ccc93e955987cb385b6a523dcbd36410496c40dbabced7c04186321
+size 4620046
diff --git a/lib/search/indexes/github-docs-3.4-pt-records.json.br b/lib/search/indexes/github-docs-3.4-pt-records.json.br
index 8984294412ad..fec19b954480 100644
--- a/lib/search/indexes/github-docs-3.4-pt-records.json.br
+++ b/lib/search/indexes/github-docs-3.4-pt-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:5b99fb3bd06efa3a00682602897f9fc98653a6ffc10ee49785b3cb3c50cc31f6
-size 749363
+oid sha256:43e172c7b4db3567201a7f821a57ae7863e451220c02d26a09b0d589fc7a214d
+size 749447
diff --git a/lib/search/indexes/github-docs-3.4-pt.json.br b/lib/search/indexes/github-docs-3.4-pt.json.br
index b51b8b3162ec..7dc21fab15a3 100644
--- a/lib/search/indexes/github-docs-3.4-pt.json.br
+++ b/lib/search/indexes/github-docs-3.4-pt.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:6bbc9194d7af57288ddf314ebac699cb99d94f62f5105cf0bb99ccdb955523a3
-size 3136205
+oid sha256:528baf3a2b31679f3bd7731b42eb3680504c76c955da90a2d7bf484765245217
+size 3136515
diff --git a/lib/search/indexes/github-docs-3.5-cn-records.json.br b/lib/search/indexes/github-docs-3.5-cn-records.json.br
index ae8fd4d03359..5b6651b4bf90 100644
--- a/lib/search/indexes/github-docs-3.5-cn-records.json.br
+++ b/lib/search/indexes/github-docs-3.5-cn-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:359a9be23454d6ece98a3092a01f5204cc188dc7d48b4432142caa4eac252384
-size 854748
+oid sha256:09473db2b98cb044d60267bfd859c9d76f05f53ac632514e97f917865ba67e06
+size 854781
diff --git a/lib/search/indexes/github-docs-3.5-cn.json.br b/lib/search/indexes/github-docs-3.5-cn.json.br
index 43b488857737..db60321d2670 100644
--- a/lib/search/indexes/github-docs-3.5-cn.json.br
+++ b/lib/search/indexes/github-docs-3.5-cn.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:c58adc6f04a43b4f4cfd7da8f8cde10a722d4919739396bdffa5a6719097e7a4
-size 1779265
+oid sha256:3b992fa32303435090cdba2457548b8b6b38b8dd8bfb51d49895adcae4251058
+size 1779439
diff --git a/lib/search/indexes/github-docs-3.5-en-records.json.br b/lib/search/indexes/github-docs-3.5-en-records.json.br
index 86cec794a922..772331e7b039 100644
--- a/lib/search/indexes/github-docs-3.5-en-records.json.br
+++ b/lib/search/indexes/github-docs-3.5-en-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:67ee1bdb635070798c2150f00e47979ef6338e6819f89ad8aa16cbda6e1cf8f7
-size 1180111
+oid sha256:d711b4e59db2698b5200c372580280b292acc1e52dfee2ab2f25779faa7767f8
+size 1179928
diff --git a/lib/search/indexes/github-docs-3.5-en.json.br b/lib/search/indexes/github-docs-3.5-en.json.br
index 3049bfc030fb..19772f52d107 100644
--- a/lib/search/indexes/github-docs-3.5-en.json.br
+++ b/lib/search/indexes/github-docs-3.5-en.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:600e4d408dc8eea97be0344de5a02cd15028c31ac426b1cab75283bc23fffa51
-size 4762270
+oid sha256:e0a56816b54b31ac17fe099b2725622359d7e47198ade3a03e1ce344844bd591
+size 4762387
diff --git a/lib/search/indexes/github-docs-3.5-es-records.json.br b/lib/search/indexes/github-docs-3.5-es-records.json.br
index e72938d9d86f..145533461f00 100644
--- a/lib/search/indexes/github-docs-3.5-es-records.json.br
+++ b/lib/search/indexes/github-docs-3.5-es-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:726e0918c1ae7a12f3f12c5028eae542550237a960fc476eb8e7faba903088fb
-size 784945
+oid sha256:609c498dc0f3220ab8d74752d1f2ee967646425069e746570c0ff11b414b1486
+size 784877
diff --git a/lib/search/indexes/github-docs-3.5-es.json.br b/lib/search/indexes/github-docs-3.5-es.json.br
index 94b5095bb2af..24163869e3d0 100644
--- a/lib/search/indexes/github-docs-3.5-es.json.br
+++ b/lib/search/indexes/github-docs-3.5-es.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:7dd387f3ff44744242824fdc854a849dc299826c0e1c18ac241f962450175d5b
-size 3357366
+oid sha256:67087ed34c7003c4896ee250ee448a03b79ec0480c0e3e0c3582b3c0c078227d
+size 3357612
diff --git a/lib/search/indexes/github-docs-3.5-ja-records.json.br b/lib/search/indexes/github-docs-3.5-ja-records.json.br
index 0b6860aeb821..1e9e6b81d8b5 100644
--- a/lib/search/indexes/github-docs-3.5-ja-records.json.br
+++ b/lib/search/indexes/github-docs-3.5-ja-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:17ab5460a2ee3f2809d31b467029076c85c6502b41e9672b26e7aea0bd2124d4
-size 868750
+oid sha256:49a4d830a9a2355bca76f739a58d80996fe4799f2d5e8e1a491f0f61a95ee518
+size 868922
diff --git a/lib/search/indexes/github-docs-3.5-ja.json.br b/lib/search/indexes/github-docs-3.5-ja.json.br
index 2a5c70466ce8..6b7d30753d7d 100644
--- a/lib/search/indexes/github-docs-3.5-ja.json.br
+++ b/lib/search/indexes/github-docs-3.5-ja.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:5086b3d17191993144480ab72c8bd66843c5d71a384bd77ac2bdf39b7cf8e527
-size 4797129
+oid sha256:149d61ec2942a3eae17c4f45d054ceafc9577a616b6d3a2bcdbe17a635544e65
+size 4796754
diff --git a/lib/search/indexes/github-docs-3.5-pt-records.json.br b/lib/search/indexes/github-docs-3.5-pt-records.json.br
index 552da0a25b26..7b73c5548cf4 100644
--- a/lib/search/indexes/github-docs-3.5-pt-records.json.br
+++ b/lib/search/indexes/github-docs-3.5-pt-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:0bf406b274df3c3af43057549884466bde8f14ae94731c20bed386a12169adbd
-size 773720
+oid sha256:1e31c64746411653f997a6a33e947237534bbb300ab373b95d65a335305a1035
+size 773739
diff --git a/lib/search/indexes/github-docs-3.5-pt.json.br b/lib/search/indexes/github-docs-3.5-pt.json.br
index 05b7ee8b993a..a67768587bd1 100644
--- a/lib/search/indexes/github-docs-3.5-pt.json.br
+++ b/lib/search/indexes/github-docs-3.5-pt.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:9b563900639c8e886e1030cb2249c864843080cc5f91e4312fb3d7bd37ce16f3
-size 3251280
+oid sha256:7a1a5ddeeed4328afebfccb5797fe024de22e774cdf452e30a22c7d46576165b
+size 3251126
diff --git a/lib/search/indexes/github-docs-3.6-cn-records.json.br b/lib/search/indexes/github-docs-3.6-cn-records.json.br
index 5e6a10219480..094fd52e3640 100644
--- a/lib/search/indexes/github-docs-3.6-cn-records.json.br
+++ b/lib/search/indexes/github-docs-3.6-cn-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:d1c3b4f0578fdee83e1555cf26a1e378116a79e1df5f4055241448e59a5d0302
-size 876374
+oid sha256:107f476a0b70021c58bed0e7dc5be543eaa04f4edaf80d794e58ba77949f93f2
+size 876548
diff --git a/lib/search/indexes/github-docs-3.6-cn.json.br b/lib/search/indexes/github-docs-3.6-cn.json.br
index 8f9b3f882b86..ae974a2066d9 100644
--- a/lib/search/indexes/github-docs-3.6-cn.json.br
+++ b/lib/search/indexes/github-docs-3.6-cn.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:82c3abac1755520c21b228f0fcd5a0bf020e6fa6b0c4a30397c1ab852e03210f
-size 1826032
+oid sha256:1a4b912ac1ca871156225f711891100c292b1ed3d63ba5e8d883862b8a171ab1
+size 1826212
diff --git a/lib/search/indexes/github-docs-3.6-en-records.json.br b/lib/search/indexes/github-docs-3.6-en-records.json.br
index fc08cbfba9e9..8c094671eef1 100644
--- a/lib/search/indexes/github-docs-3.6-en-records.json.br
+++ b/lib/search/indexes/github-docs-3.6-en-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:ff097d4b175d0693b6274ae3f755b9fab3763e6456c9f72c228315fb3ae04afb
-size 1208887
+oid sha256:847b439d99aa2255d8c803f0cf6536fe271465696ae071eab98035ea13934988
+size 1208885
diff --git a/lib/search/indexes/github-docs-3.6-en.json.br b/lib/search/indexes/github-docs-3.6-en.json.br
index 40049c679954..0a2ad6bd9ba7 100644
--- a/lib/search/indexes/github-docs-3.6-en.json.br
+++ b/lib/search/indexes/github-docs-3.6-en.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:c17623e46191725c5bdc7ba42a140465e402a928d329c4e2822f1a8d5e336896
-size 4875445
+oid sha256:b1dae31383945a8a5c664f440463cea3e1180f82e490c3a9ebb8d0fd57703fb6
+size 4874842
diff --git a/lib/search/indexes/github-docs-3.6-es-records.json.br b/lib/search/indexes/github-docs-3.6-es-records.json.br
index 287fa0e9d1c3..6ad7431ceebc 100644
--- a/lib/search/indexes/github-docs-3.6-es-records.json.br
+++ b/lib/search/indexes/github-docs-3.6-es-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:798131490fa0ccb1c60ea751648d34d1ee6959f324b71e076b4d5f5b5b392746
-size 805040
+oid sha256:b47a8b9843a9daf5a32849d09582492284a870f9caada01986555bf7eb445afc
+size 805020
diff --git a/lib/search/indexes/github-docs-3.6-es.json.br b/lib/search/indexes/github-docs-3.6-es.json.br
index 02b848c5c785..7806cd54394a 100644
--- a/lib/search/indexes/github-docs-3.6-es.json.br
+++ b/lib/search/indexes/github-docs-3.6-es.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:289a1da3373d6462d5bd9b1f365821a391e62c6d50a4628746d917fb31e62083
-size 3451121
+oid sha256:247e098eb99eebe519220a965a03bceabb383b2b36be8ec6da9991e93b96467b
+size 3451068
diff --git a/lib/search/indexes/github-docs-3.6-ja-records.json.br b/lib/search/indexes/github-docs-3.6-ja-records.json.br
index 5b806cd0df97..f7e1cb078184 100644
--- a/lib/search/indexes/github-docs-3.6-ja-records.json.br
+++ b/lib/search/indexes/github-docs-3.6-ja-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:700499c7db8918921132ae81fda70b4da05acbd3e4adcfa10993add8d3f37dd4
-size 890761
+oid sha256:12fe20772f30dbb575daf58204d5f681772a1499f0e23aef51f0d05deae4ea03
+size 890655
diff --git a/lib/search/indexes/github-docs-3.6-ja.json.br b/lib/search/indexes/github-docs-3.6-ja.json.br
index 5b212a7020a9..9b1484bb9398 100644
--- a/lib/search/indexes/github-docs-3.6-ja.json.br
+++ b/lib/search/indexes/github-docs-3.6-ja.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:8e57978bb16b540a864e8bf54b92d469400482fdb310cf649e2f87db2bd0229e
-size 4922818
+oid sha256:8a6f8be68b6cdd7f9f8acb2883e37429960bf0c9e1c3846d968b2389ae9c4068
+size 4922654
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 0f4bcb62486e..709348ff3acd 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:553113ca19355d5e41ad061d09404e0f5a3ffe9a5059fb1e6431925fd890369f
-size 1039362
+oid sha256:a63ffd0943df249accec693027b4b519f6bb7e2feed159d51f84ca4bbd937536
+size 1039186
diff --git a/lib/search/indexes/github-docs-dotcom-cn.json.br b/lib/search/indexes/github-docs-dotcom-cn.json.br
index fe4061bb592b..e84ed6ef6617 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:f99d7b083d63eaf3cef1ca0ae0cdf9c860ac5c4e933ffcd383992049a56bb21a
-size 1883883
+oid sha256:b296ac7a280ba68740ff193d67f3502d5dcf4926dc15c2408ac06d3f7b598471
+size 1883958
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 2cb570fb2aab..e8fce079b245 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:12bd35c4a3fa65ce6f08f3c154e92a3f6277865b2af50c0b99fe3696d265ad99
-size 1456764
+oid sha256:9feb5e7f38debfdb7c78babf10d020092ff30a33f5f192f52d3701667e9a3b55
+size 1457521
diff --git a/lib/search/indexes/github-docs-dotcom-en.json.br b/lib/search/indexes/github-docs-dotcom-en.json.br
index 0665ca34a625..1b75e3e646e7 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:b2eaf923a24f6c41398cab1bd58755a1036bed61d2134d41183f2b7ea6a706bc
-size 5612095
+oid sha256:31db58a4717b5816db4ade07c6686ef500cf3be4f39e9566c61bf3b3ed3b6f19
+size 5611578
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 fdb3fc49322b..cf7b65cc3862 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:0504c40231906388595b00974dcc9bb1979137b4ba920c9096d63c1844d97f09
-size 937362
+oid sha256:767689707cd46fdcbe3448c2d03fbdba8e14548e92f28707e8f6029d31d64a6f
+size 937404
diff --git a/lib/search/indexes/github-docs-dotcom-es.json.br b/lib/search/indexes/github-docs-dotcom-es.json.br
index a62936afc250..50c15a15e954 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:7ded21b32f503c3f63e18e2fc15615f6090a483191a69ccb2553aa17864b5f44
-size 3893677
+oid sha256:a0f8709cf7d872f3ead07f745e6356f47230b04c1e03895fcf960d376c0263d7
+size 3893676
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 86e94b9c75fa..79df2b6eca9b 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:436799a5400f466f070e12ecbdcf857dd433d5479bbe59029d42402890762a4e
-size 1047158
+oid sha256:a22ff7ba64573b6b40bde4cd7fa89d7297b8fb7870d21143bdf64f53aab535e5
+size 1047237
diff --git a/lib/search/indexes/github-docs-dotcom-ja.json.br b/lib/search/indexes/github-docs-dotcom-ja.json.br
index 9b51248945f0..01e57c72a16e 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:7ac5de585ee7143e7111fc9d11ca9cc331f74f3b078d3c6d6621fc77c3e3ee54
-size 5625019
+oid sha256:59c60c3cb011a42ef44e7de32c26f54c25739e0212f12cd58e8a8103e0de2453
+size 5625396
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 665aced4d288..db2e9ec610f3 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:81e0eaeb787ec7bb1e8869ca9faec4e87e34f536204ea18a5985b95ee8df0892
-size 926604
+oid sha256:4c9316be4966cd29ee51667553367ac286cd333cee22fff375418c9586ef541b
+size 926645
diff --git a/lib/search/indexes/github-docs-dotcom-pt.json.br b/lib/search/indexes/github-docs-dotcom-pt.json.br
index 0e18a80f8975..12da27cc31e8 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:acf955981e542bb0b8f5a755de95f4317c3a440ca064ab37c6b1585121071ab4
-size 3797128
+oid sha256:1fec59807bab8130dc1bb834866d377f51ab3bb43b6f65fdae347f02ac6d7835
+size 3797346
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 0e32152d9703..dfd652bff809 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:55060b67d84a269b0c026f98aa9d76a8b5ab9033fdca1209399e5e6aa7688e6b
-size 660726
+oid sha256:0ed6933564f61cf55df674a16c6c0c1a03f96306e080d0dde107489829f9d1ab
+size 660627
diff --git a/lib/search/indexes/github-docs-ghae-cn.json.br b/lib/search/indexes/github-docs-ghae-cn.json.br
index d925be2f89ab..8f6c18cd58e5 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:6217a65de00d85b6392041258788e4c37f51515e3199e2b114aef49155aaf56a
-size 1323183
+oid sha256:b95f381132bb952c1b3c40c1c2007ba56343ce7589bf869872aff706cd11a76a
+size 1323168
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 bff197cc9fe9..51a5fc78a6d6 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:28fd4dc2edda52956106c2e592198bf223cd3c4904ef1732d56a247886a913cf
-size 938118
+oid sha256:f5af42a79196be812dab64774159d170b8c68ff6968848fe6f94ac463c3dd5d6
+size 938134
diff --git a/lib/search/indexes/github-docs-ghae-en.json.br b/lib/search/indexes/github-docs-ghae-en.json.br
index dcd6a48c13fa..80aa4f8228b4 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:e7c16e39946cf77bf9c02c2986b827031a3601db98094bc5f97fd99cb6426c9c
-size 3719728
+oid sha256:a09c5d263c7acfaa02ce30c26aea6e2eb44c8ad99b3b351af63622018e7bf581
+size 3720100
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 75be259f67c0..3f7f92668a1c 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:8e23fcc882ffb3e646a791fe154e76c89e02b3d0151facba1b728f45a30258ba
-size 614526
+oid sha256:80de179825d8a1e3d21126507d72c48e7c3beced4b880c5bd2256bf165e94a09
+size 614560
diff --git a/lib/search/indexes/github-docs-ghae-es.json.br b/lib/search/indexes/github-docs-ghae-es.json.br
index 9f18b3cc967b..16804f2749bf 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:e416e7a575518d6f85fd37140e17b31dafa2136cb10734378aa8441690e1f9fb
-size 2538147
+oid sha256:b9e8e8a37da012c865d22fcb28163b920b0977c1106a6021ad0fd395ef2d0920
+size 2538066
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 a98ff6eb24fe..6abe84bdcc79 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:a110e687691fd3c7f6e9daf61772b78a2be67cc0e09d55fa77448b1bc77b26bc
-size 674075
+oid sha256:bc265050d11d41f4144c75f17e244fcd4537cf34bb0b84d0f9b2c16ae22280b6
+size 674070
diff --git a/lib/search/indexes/github-docs-ghae-ja.json.br b/lib/search/indexes/github-docs-ghae-ja.json.br
index 6fe17ffa18c9..2e235c75f17d 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:4aa8fdbd2f194b6c6097687b86ddb192940ff4428856adde2afd6923fc06fb04
-size 3606015
+oid sha256:00adbb9ad88029aeaa7a3a71e41b8d860644e86d7802b6acfe5402d1e20e3136
+size 3605720
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 deef2363b0c1..7de8706bd56b 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:dc2aa6e8dd705b07ae3120e7f5c6056c3129b56f045dbba8de3aeb28e1547458
-size 606079
+oid sha256:dec45627aa749a235940272cd9ec56175da03c3c93fa40c2d5e294c0592f2039
+size 606083
diff --git a/lib/search/indexes/github-docs-ghae-pt.json.br b/lib/search/indexes/github-docs-ghae-pt.json.br
index 272a9897d558..c4620f5a2804 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:07547b9155b6a34859ca42be13f3f3062e78725e9ac15fbc36a3bf99c2e8632b
-size 2437326
+oid sha256:71e5cb01a7719f392ad22c4558fb558408062d1d9b487a3d6bdd38462111587c
+size 2437139
diff --git a/lib/search/indexes/github-docs-ghec-cn-records.json.br b/lib/search/indexes/github-docs-ghec-cn-records.json.br
index 8f9eecf20d84..132183640f59 100644
--- a/lib/search/indexes/github-docs-ghec-cn-records.json.br
+++ b/lib/search/indexes/github-docs-ghec-cn-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:989d3804ab9a385b9d0a7a654f4206568d6034c8782faf0dbbb68af0163ebbc6
-size 1011732
+oid sha256:d4bc9e452f93b49ec32683e1fe48491f876d8211181b3e924479efc74761869e
+size 1011770
diff --git a/lib/search/indexes/github-docs-ghec-cn.json.br b/lib/search/indexes/github-docs-ghec-cn.json.br
index 9e6f439cb251..e14ab32e27e6 100644
--- a/lib/search/indexes/github-docs-ghec-cn.json.br
+++ b/lib/search/indexes/github-docs-ghec-cn.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:3b45a6325a88012e000142816f92aa7aaa938624497eae53024d54c3f23958bd
-size 2015854
+oid sha256:079e46d89ff7ebe351b908be7675fc99e56ca49605f5a4cadd08f0de25a4b6c0
+size 2015977
diff --git a/lib/search/indexes/github-docs-ghec-en-records.json.br b/lib/search/indexes/github-docs-ghec-en-records.json.br
index 757bbac5e2be..d9d23860441d 100644
--- a/lib/search/indexes/github-docs-ghec-en-records.json.br
+++ b/lib/search/indexes/github-docs-ghec-en-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:938c8af66c753545cf7d97ff65475d2d82dcdba75cd59e849c55c404168b71b9
-size 1387069
+oid sha256:693a716eb51188c98e135386e9c148ade9007e1873de20e77a6efff98178e5d1
+size 1386773
diff --git a/lib/search/indexes/github-docs-ghec-en.json.br b/lib/search/indexes/github-docs-ghec-en.json.br
index 6d835014d945..7fa3cf28f09b 100644
--- a/lib/search/indexes/github-docs-ghec-en.json.br
+++ b/lib/search/indexes/github-docs-ghec-en.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:97a4b684641fc2cb45099aa1e9567e09247ef07002bda63534670e14bf0b910e
-size 5629140
+oid sha256:b05c776aacb94722ee8fad3f8cc9b14a65b0ed1cd8e930c86571826fa9073a36
+size 5629270
diff --git a/lib/search/indexes/github-docs-ghec-es-records.json.br b/lib/search/indexes/github-docs-ghec-es-records.json.br
index 9452875249f3..0977b218b42e 100644
--- a/lib/search/indexes/github-docs-ghec-es-records.json.br
+++ b/lib/search/indexes/github-docs-ghec-es-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:51ed5eefa9a4d3805677ec98e493de694a7f51f8524908cdad7d77674924deed
-size 935941
+oid sha256:859f98dee97d262dc96aa7eafe202650e5d1d0830348ec98554583e3b0c730b8
+size 935965
diff --git a/lib/search/indexes/github-docs-ghec-es.json.br b/lib/search/indexes/github-docs-ghec-es.json.br
index 91d75cca83e4..188c5d1ba5ab 100644
--- a/lib/search/indexes/github-docs-ghec-es.json.br
+++ b/lib/search/indexes/github-docs-ghec-es.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:8a49bd370b7b48253c13503011b2c2741f84696067c5388bc55502a6b6ba1007
-size 4035644
+oid sha256:6a5fe8e0c062268dad55b87a5532773c201c1062822c1d3dff6e318d8d84cc55
+size 4035539
diff --git a/lib/search/indexes/github-docs-ghec-ja-records.json.br b/lib/search/indexes/github-docs-ghec-ja-records.json.br
index 29cd0ae1121e..c86540947e75 100644
--- a/lib/search/indexes/github-docs-ghec-ja-records.json.br
+++ b/lib/search/indexes/github-docs-ghec-ja-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:28e025c8270b872db9384b357298ede023e5069a18080671d51cf815e30445e5
-size 1025590
+oid sha256:d605fec8c784179357f0ca730b49b72de344285f5e5357d218a6d26bb9bb4c5a
+size 1025556
diff --git a/lib/search/indexes/github-docs-ghec-ja.json.br b/lib/search/indexes/github-docs-ghec-ja.json.br
index 5ca67fb14e9d..46ef5620b73c 100644
--- a/lib/search/indexes/github-docs-ghec-ja.json.br
+++ b/lib/search/indexes/github-docs-ghec-ja.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:9fc8588e6326e3378991c719001e779c65db42ceeac148ca016ae81745662d42
-size 5726544
+oid sha256:e071dab9cdaa25886f9ae4088e98b884615d9b14652a9e1b72da60f9023500ec
+size 5726309
diff --git a/lib/search/indexes/github-docs-ghec-pt-records.json.br b/lib/search/indexes/github-docs-ghec-pt-records.json.br
index baf0f3037e61..06ab9c77960d 100644
--- a/lib/search/indexes/github-docs-ghec-pt-records.json.br
+++ b/lib/search/indexes/github-docs-ghec-pt-records.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:a18724e947da4304ec7a1539a4208e6e9589833df2558155691a83c66214e85f
-size 923930
+oid sha256:1d09532c120c1b2140696d472debe76c94fcbe3a151e0c32867ea93d2512f258
+size 923925
diff --git a/lib/search/indexes/github-docs-ghec-pt.json.br b/lib/search/indexes/github-docs-ghec-pt.json.br
index 25740f141054..37008fe04bdf 100644
--- a/lib/search/indexes/github-docs-ghec-pt.json.br
+++ b/lib/search/indexes/github-docs-ghec-pt.json.br
@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
-oid sha256:a1c30340184d7f1ebb216c8de53f18cbd3226a4c74ba47142fffba3354abc82c
-size 3926915
+oid sha256:f113a1c14e40bd0a3576f1fe5f058fb6c42fa8ef82051307e3005484670697f8
+size 3926719
diff --git a/translations/pt-BR/content/authentication/managing-commit-signature-verification/generating-a-new-gpg-key.md b/translations/pt-BR/content/authentication/managing-commit-signature-verification/generating-a-new-gpg-key.md
index a4af5448ea3e..5f358e6f7a66 100644
--- a/translations/pt-BR/content/authentication/managing-commit-signature-verification/generating-a-new-gpg-key.md
+++ b/translations/pt-BR/content/authentication/managing-commit-signature-verification/generating-a-new-gpg-key.md
@@ -29,11 +29,11 @@ topics:
{% data reusables.command_line.open_the_multi_os_terminal %}
3. Gere um par de chaves GPG. Já que existem várias versões do GPG, é possível que você tenha de consultar a [_página man_](https://en.wikipedia.org/wiki/Man_page) relevante para encontrar o comando de geração de chaves apropriado. A sua chave deve usar RSA.
- Se a sua versão for 2.1.17 ou posterior, cole o texto abaixo para gerar um par de chaves GPG.
- ```shell
+ ```shell{:copy}
$ gpg --full-generate-key
```
- Se a sua versão não for 2.1.17 ou posterior, o comando `gpg --full-generate-key` não funcionará. Cole o texto abaixo e passe para a etapa 6.
- ```shell
+ ```shell{:copy}
$ gpg --default-new-key-algo rsa4096 --gen-key
```
4. Mediante instrução, especifique o tipo de tecla que você deseja ou pressione `Enter` para aceitar o padrão.
@@ -52,10 +52,10 @@ topics:
{% data reusables.gpg.list-keys-with-note %}
{% data reusables.gpg.copy-gpg-key-id %}
10. Cole o texto abaixo, substituindo o ID da chave GPG que você quer usar. Neste exemplo, o ID da chave GPG é `3AA5C34371567BD2`:
- ```shell
- $ gpg --armor --export 3AA5C34371567BD2
- # Prints the GPG key ID, in ASCII armor format
- ```
+ ```shell{:copy}
+ $ gpg --armor --export 3AA5C34371567BD2
+ # Prints the GPG key ID, in ASCII armor format
+ ```
11. Copie sua chave GPG, que inicia com `-----BEGIN PGP PUBLIC KEY BLOCK-----` e termina com `-----END PGP PUBLIC KEY BLOCK-----`.
12. [Adicione a chave GPG à sua conta GitHub](/articles/adding-a-gpg-key-to-your-github-account).
diff --git a/translations/pt-BR/data/reusables/gpg/copy-gpg-key-id.md b/translations/pt-BR/data/reusables/gpg/copy-gpg-key-id.md
index 7527dd811a6a..99a4a4c3d9eb 100644
--- a/translations/pt-BR/data/reusables/gpg/copy-gpg-key-id.md
+++ b/translations/pt-BR/data/reusables/gpg/copy-gpg-key-id.md
@@ -1,9 +1,9 @@
1. Da lista de chaves GPG, copie a forma longa do ID da chave GPG que você gostaria de usar. Neste exemplo, o ID da chave GPG é `3AA5C34371567BD2`:
- ```shell
+ ```shell{:copy}
$ gpg --list-secret-keys --keyid-format=long
/Users/hubot/.gnupg/secring.gpg
------------------------------------
sec 4096R/3AA5C34371567BD2 2016-03-10 [expires: 2017-03-10]
uid Hubot
ssb 4096R/42B317FD4BA89E7A 2016-03-10
- ```
+ ```
diff --git a/translations/pt-BR/data/reusables/gpg/list-keys-with-note.md b/translations/pt-BR/data/reusables/gpg/list-keys-with-note.md
index de75bf4ce372..a3650500a0e3 100644
--- a/translations/pt-BR/data/reusables/gpg/list-keys-with-note.md
+++ b/translations/pt-BR/data/reusables/gpg/list-keys-with-note.md
@@ -1,10 +1,11 @@
-
1. Use o comando `gpg --list-secret-keys --keyid-format=long` para listar a forma longa das chaves GPG para as quais você tem uma chave pública e privada. Uma chave privada é necessária para assinar commits ou tags.
- ```shell
- $ gpg --list-secret-keys --keyid-format=long
-```
- {% note %}
- **Nota:** Algumas instalações GPG no Linux podem exigir que você use `gpg2 --list-keys --keyid-format LONG` para visualizar uma lista de suas chaves existentes. Neste caso você também precisará configurar o Git para usar `gpg2` executando `git config --global gpg.program gpg2`.
+ ```shell{:copy}
+ $ gpg --list-secret-keys --keyid-format=long
+ ```
+
+ {% note %}
+
+ **Nota:** Algumas instalações GPG no Linux podem exigir que você use `gpg2 --list-keys --keyid-format LONG` para visualizar uma lista de suas chaves existentes. Neste caso você também precisará configurar o Git para usar `gpg2` executando `git config --global gpg.program gpg2`.
- {% endnote %}
+ {% endnote %}