Skip to content

Commit b9301a3

Browse files
authored
New translation batch for pt-BR (#23168)
* Add crowdin translations * run script/i18n/reset-files-with-broken-liquid-tags.js --language=pt * run script/i18n/reset-known-broken-translation-files.js * Run script/i18n/homogenize-frontmatter.js * Run script/i18n/fix-translation-errors.js * Run script/i18n/lint-translation-files.js --check rendering
1 parent 0088f5b commit b9301a3

74 files changed

Lines changed: 2104 additions & 1182 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

translations/es-ES/content/actions/deployment/security-hardening-your-deployments/using-openid-connect-with-reusable-workflows.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@ topics:
1818
{% data reusables.actions.enterprise-beta %}
1919
{% data reusables.actions.enterprise-github-hosted-runners %}
2020

21-
{% note %}
22-
23-
**Note:** Reusable workflows are currently in beta and subject to change.
24-
25-
{% endnote %}
26-
2721
## About reusable workflows
2822

2923
Rather than copying and pasting deployment jobs from one workflow to another, you can create a reusable workflow that performs the deployment steps. A reusable workflow can be used by another workflow if it meets one of the access requirements described in "[Reusing workflows](/actions/learn-github-actions/reusing-workflows#access-to-reusable-workflows)."

translations/es-ES/content/actions/learn-github-actions/reusing-workflows.md

Lines changed: 182 additions & 72 deletions
Large diffs are not rendered by default.

translations/es-ES/content/actions/learn-github-actions/workflow-syntax-for-github-actions.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,31 @@ For more information, see "[Reusing workflows](/actions/learn-github-actions/reu
226226

227227
Required if input is defined for the `on.workflow_call` keyword. The value of this parameter is a string specifying the data type of the input. This must be one of: `boolean`, `number`, or `string`.
228228

229+
## `on.workflow_call.outputs`
230+
231+
A map of outputs for a called workflow. Called workflow outputs are available to all downstream jobs in the caller workflow. Each output has an identifier, an optional `description,` and a `value.` The `value` must be set to the value of an output from a job within the called workflow.
232+
233+
In the example below, two outputs are defined for this reusable workflow: `workflow_output1` and `workflow_output2`. These are mapped to outputs called `job_output1` and `job_output2`, both from a job called `my_job`.
234+
235+
### Example
236+
237+
{% raw %}
238+
```yaml
239+
on:
240+
workflow_call:
241+
# Map the workflow outputs to job outputs
242+
outputs:
243+
workflow_output1:
244+
description: "The first job output"
245+
value: ${{ jobs.my_job.outputs.job_output1 }}
246+
workflow_output2:
247+
description: "The second job output"
248+
value: ${{ jobs.my_job.outputs.job_output2 }}
249+
```
250+
{% endraw %}
251+
252+
For information on how to reference a job output, see [`jobs.<job_id>.outputs`](#jobsjob_idoutputs). For more information, see "[Reusing workflows](/actions/learn-github-actions/reusing-workflows)."
253+
229254
## `on.workflow_call.secrets`
230255

231256
A map of the secrets that can be used in the called workflow.

translations/es-ES/content/admin/github-actions/enabling-github-actions-for-github-enterprise-server/setting-up-dependabot-updates.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@ When you have configured {% data variables.product.product_location %} to use {%
4848
Any VM that you use for {% data variables.product.prodname_dependabot %} runners must meet the requirements for self-hosted runners. In addition, they must meet the following requirements.
4949

5050
- Linux operating system
51-
- The following dependencies installed:
52-
- Docker running as the same user as the self-hosted runner application
53-
- Git
51+
- Git installed
52+
- Docker installed with access for the runner users:
53+
- We recommend installing Docker in rootless mode and configuring the runners to access Docker without `root` privileges.
54+
- Alternatively, install Docker and give the runner users raised privileges to run Docker.
5455

5556
The CPU and memory requirements will depend on the number of concurrent runners you deploy on a given VM. As guidance, we have successfully set up 20 runners on a single 2 CPU 8GB machine, but ultimately, your CPU and memory requirements will heavily depend on the repositories being updated. Some ecosystems will require more resources than others.
5657

@@ -72,6 +73,15 @@ If you specify more than 14 concurrent runners on a VM, you must also update the
7273

7374
1. Provision self-hosted runners, at the repository, organization, or enterprise account level. For more information, see "[About self-hosted runners](/actions/hosting-your-own-runners/about-self-hosted-runners)" and "[Adding self-hosted runners](/actions/hosting-your-own-runners/adding-self-hosted-runners)."
7475

75-
2. Verify that the self-hosted runners meet the requirements for {% data variables.product.prodname_dependabot %} before assigning a `dependabot` label to each runner you want {% data variables.product.prodname_dependabot %} to use. For more information, see "[Using labels with self-hosted runners](/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners#assigning-a-label-to-a-self-hosted-runner)."
76+
2. Set up the self-hosted runners with the requirements described above. For example, on a VM running Ubuntu 20.04 you would:
7677

77-
3. Optionally, enable workflows triggered by {% data variables.product.prodname_dependabot %} to use more than read-only permissions and to have access to any secrets that are normally available. For more information, see "[Troubleshooting {% data variables.product.prodname_actions %} for your enterprise](/admin/github-actions/advanced-configuration-and-troubleshooting/troubleshooting-github-actions-for-your-enterprise#enabling-workflows-triggered-by-dependabot-access-to-dependabot-secrets-and-increased-permissions)."
78+
- Verify that Git is installed: `command -v git`
79+
- Install Docker and ensure that the runner users have access to Docker. For more information, see the Docker documentation.
80+
- [Install Docker Engine on Ubuntu](https://docs.docker.com/engine/install/ubuntu/)
81+
- Recommended approach: [Run the Docker daemon as a non-root user (Rootless mode)](https://docs.docker.com/engine/security/rootless/)
82+
- Alternative approach: [Manage Docker as a non-root user](https://docs.docker.com/engine/install/linux-postinstall/#manage-docker-as-a-non-root-user)
83+
- Verify that the runners have access to the public internet and can only access the internal networks that {% data variables.product.prodname_dependabot %} needs.
84+
85+
3. Assign a `dependabot` label to each runner you want {% data variables.product.prodname_dependabot %} to use. For more information, see "[Using labels with self-hosted runners](/actions/hosting-your-own-runners/using-labels-with-self-hosted-runners#assigning-a-label-to-a-self-hosted-runner)."
86+
87+
4. Optionally, enable workflows triggered by {% data variables.product.prodname_dependabot %} to use more than read-only permissions and to have access to any secrets that are normally available. For more information, see "[Troubleshooting {% data variables.product.prodname_actions %} for your enterprise](/admin/github-actions/advanced-configuration-and-troubleshooting/troubleshooting-github-actions-for-your-enterprise#enabling-workflows-triggered-by-dependabot-access-to-dependabot-secrets-and-increased-permissions)."

translations/es-ES/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/setting-up-code-scanning-for-a-repository.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ topics:
2323
- Actions
2424
- Repositories
2525
---
26-
<!--For this article in earlier GHES versions, see /content/github/finding-security-vulnerabilities-and-errors-in-your-code-->
2726

2827
{% data reusables.code-scanning.beta %}
2928
{% data reusables.code-scanning.enterprise-enable-code-scanning-actions %}
@@ -34,13 +33,21 @@ You decide how to generate {% data variables.product.prodname_code_scanning %} a
3433

3534
{% data reusables.code-scanning.enabling-options %}
3635

36+
{% ifversion ghae %}
37+
## Prerequisites
38+
39+
Before setting up {% data variables.product.prodname_code_scanning %} for a repository, you must ensure that there is at least one self-hosted {% data variables.product.prodname_actions %} runner available to the repository.
40+
41+
Enterprise owners, organization and repository administrators can add self-hosted runners. For more information, see "[About self-hosted runners](/actions/hosting-your-own-runners/about-self-hosted-runners)" and "[Adding self-hosted runners](/actions/hosting-your-own-runners/adding-self-hosted-runners)."
42+
{% endif %}
43+
3744
## Setting up {% data variables.product.prodname_code_scanning %} using actions
3845

3946
{% ifversion fpt or ghec %}Using actions to run {% data variables.product.prodname_code_scanning %} will use minutes. For more information, see "[About billing for {% data variables.product.prodname_actions %}](/billing/managing-billing-for-github-actions/about-billing-for-github-actions)."{% endif %}
4047

4148
{% data reusables.repositories.navigate-to-repo %}
4249
{% data reusables.repositories.sidebar-security %}
43-
3. To the right of "{% data variables.product.prodname_code_scanning_capc %} alerts", click **Set up {% data variables.product.prodname_code_scanning %}**. {% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}If {% data variables.product.prodname_code_scanning %} is missing, you need to ask an organization owner or repository administrator to enable {% data variables.product.prodname_GH_advanced_security %}. For more information, see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)" or "[Managing security and analysis settings for your repository](/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository)."{% endif %}
50+
1. To the right of "{% data variables.product.prodname_code_scanning_capc %} alerts", click **Set up {% data variables.product.prodname_code_scanning %}**. {% ifversion fpt or ghes > 3.0 or ghae-next or ghec %}If {% data variables.product.prodname_code_scanning %} is missing, you need to ask an organization owner or repository administrator to enable {% data variables.product.prodname_GH_advanced_security %}. For more information, see "[Managing security and analysis settings for your organization](/organizations/keeping-your-organization-secure/managing-security-and-analysis-settings-for-your-organization)" or "[Managing security and analysis settings for your repository](/github/administering-a-repository/managing-security-and-analysis-settings-for-your-repository)."{% endif %}
4451
!["Set up {% data variables.product.prodname_code_scanning %}" button to the right of "{% data variables.product.prodname_code_scanning_capc %}" in the Security Overview](/assets/images/help/security/overview-set-up-code-scanning.png)
4552
4. Under "Get started with {% data variables.product.prodname_code_scanning %}", click **Set up this workflow** on the {% data variables.product.prodname_codeql_workflow %} or on a third-party workflow.
4653
!["Set up this workflow" button under "Get started with {% data variables.product.prodname_code_scanning %}" heading](/assets/images/help/repository/code-scanning-set-up-this-workflow.png)Workflows are only displayed if they are relevant for the programming languages detected in the repository. The {% data variables.product.prodname_codeql_workflow %} is always displayed, but the "Set up this workflow" button is only enabled if {% data variables.product.prodname_codeql %} analysis supports the languages present in the repository.
Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Personalizar tu codespace
3-
intro: '{% data variables.product.prodname_codespaces %} es un ambiente dedicado para ti. Puedes configurar tus repositorios con un contenedor de dev para definir su ambiente predeterminado de Codespaces y personalizar tu experiencia de desarrollo a lo largo de tus codespaces con dotfiles y sincronización de ajustes.'
2+
title: Customizing your codespace
3+
intro: '{% data variables.product.prodname_codespaces %} is a dedicated environment for you. You can configure your repositories with a dev container to define their default Codespaces environment, and personalize your development experience across all of your codespaces with dotfiles and Settings Sync.'
44
product: '{% data reusables.gated-features.codespaces %}'
55
versions:
66
fpt: '*'
@@ -10,8 +10,10 @@ redirect_from:
1010
topics:
1111
- Codespaces
1212
children:
13-
- /configuring-codespaces-for-your-project
1413
- /personalizing-codespaces-for-your-account
14+
- /changing-the-machine-type-for-your-codespace
15+
- /setting-your-default-editor-for-codespaces
16+
- /setting-your-default-region-for-codespaces
1517
- /prebuilding-codespaces-for-your-project
1618
---
17-
19+

translations/es-ES/content/codespaces/developing-in-codespaces/creating-a-codespace.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ topics:
1414
- Codespaces
1515
- Fundamentals
1616
- Developer
17+
shortTitle: Create a codespace
1718
---
1819

1920
## About codespace creation

translations/es-ES/content/codespaces/developing-in-codespaces/deleting-a-codespace.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ topics:
1313
- Codespaces
1414
- Fundamentals
1515
- Developer
16+
shortTitle: Delete a codespace
1617
---
1718

1819

translations/es-ES/content/codespaces/developing-in-codespaces/developing-in-a-codespace.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ topics:
1414
- Codespaces
1515
- Fundamentals
1616
- Developer
17+
shortTitle: Develop in a codespace
1718
---
1819

1920

translations/es-ES/content/codespaces/developing-in-codespaces/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ children:
1515
- /using-codespaces-for-pull-requests
1616
- /deleting-a-codespace
1717
- /forwarding-ports-in-your-codespace
18-
- /changing-the-machine-type-for-your-codespace
1918
- /using-codespaces-in-visual-studio-code
2019
- /using-codespaces-with-github-cli
2120
---

0 commit comments

Comments
 (0)