Skip to content

Commit 32f5382

Browse files
authored
Merge pull request github#17436 from github/repo-sync
repo sync
2 parents 1aabf0a + 04c8c5d commit 32f5382

File tree

69 files changed

+801
-475
lines changed

Some content is hidden

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

69 files changed

+801
-475
lines changed

translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/about-your-personal-dashboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Para acceder a tu tablero personal una vez que has iniciado sesión, haz clic en
2525

2626
## Encontrar tu actividad reciente
2727

28-
En la sección "Recent activity" (Actividad reciente) de tus noticias, rápidamente puedes encontrar las propuestas y solicitudes de extracción recién actualizadas en las que estás trabajando y hacerles el seguimiento. En "Recent activity" (Actividad reciente), puedes previsualizar hasta 12 actualizaciones recientes, realizadas durante las últimas dos semanas.
28+
En la sección "Recent activity" (Actividad reciente) de tus noticias, rápidamente puedes encontrar las propuestas y solicitudes de extracción recién actualizadas en las que estás trabajando y hacerles el seguimiento. En "Recent activity" (Actividad reciente), puedes previsualizar hasta 4 actualizaciones recientes, realizadas durante las últimas dos semanas.
2929

3030
{% data reusables.dashboard.recent-activity-qualifying-events %}
3131

translations/es-ES/content/account-and-profile/setting-up-and-managing-your-github-user-account/managing-user-account-settings/managing-your-theme-settings.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,6 @@ You may want to use a dark theme to reduce power consumption on certain devices,
2020

2121
{% ifversion fpt or ghes > 3.2 or ghae-issue-4618 or ghec %}If you have low vision, you may benefit from a high contrast theme, with greater contrast between foreground and background elements.{% endif %}{% ifversion fpt or ghae-issue-4619 or ghec %} If you have colorblindness, you may benefit from our light and dark colorblind themes.
2222

23-
{% ifversion fpt or ghec %}
24-
{% note %}
25-
26-
**Note:** The colorblind themes are currently in public beta. For more information on enabling features in public beta, see "[Exploring early access releases with feature preview](/get-started/using-github/exploring-early-access-releases-with-feature-preview)."
27-
28-
{% endnote %}
29-
{% endif %}
30-
3123
{% endif %}
3224

3325
{% data reusables.user-settings.access_settings %}

translations/es-ES/content/actions/automating-builds-and-tests/building-and-testing-swift.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Los siguientes ejemplos demuestran el uso de la acción `fwal/setup-swift`.
6565

6666
### Utilizar versiones múltiples de Swift
6767

68-
Puedes configurar tu job para que utilice versiones múltiples de Swift en una matriz de compilación.
68+
You can configure your job to use multiple versions of Swift in a matrix.
6969

7070
```yaml{:copy}
7171
{% data reusables.actions.actions-not-certified-by-github-comment %}

translations/es-ES/content/actions/learn-github-actions/contexts.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ miniTocMaxHeadingLevel: 3
2323

2424
Contexts are a way to access information about workflow runs, runner environments, jobs, and steps. Each context is an object that contains properties, which can be strings or other objects.
2525

26-
{% data reusables.actions.context-contents %} For example, the `matrix` context is only populated for jobs in a [build matrix](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix).
26+
{% data reusables.actions.context-contents %} For example, the `matrix` context is only populated for jobs in a [matrix](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix).
2727

2828
You can access contexts using the expression syntax. For more information, see "[Expressions](/actions/learn-github-actions/expressions)."
2929

@@ -552,19 +552,19 @@ The following example contents of the `secrets` context shows the automatic `GIT
552552

553553
## `strategy` context
554554

555-
For workflows with a build matrix, the `strategy` context contains information about the matrix execution strategy for the current job.
555+
For workflows with a matrix, the `strategy` context contains information about the matrix execution strategy for the current job.
556556

557557
| Property name | Type | Description |
558558
|---------------|------|-------------|
559559
| `strategy` | `object` | This context changes for each job in a workflow run. You can access this context from any job or step in a workflow. This object contains all the properties listed below. |
560-
| `strategy.fail-fast` | `string` | When `true`, all in-progress jobs are canceled if any job in a build matrix fails. For more information, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast)." |
561-
| `strategy.job-index` | `string` | The index of the current job in the build matrix. **Note:** This number is a zero-based number. The first job's index in the build matrix is `0`. |
562-
| `strategy.job-total` | `string` | The total number of jobs in the build matrix. **Note:** This number **is not** a zero-based number. For example, for a build matrix with four jobs, the value of `job-total` is `4`. |
560+
| `strategy.fail-fast` | `string` | When `true`, all in-progress jobs are canceled if any job in a matrix fails. For more information, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast)." |
561+
| `strategy.job-index` | `string` | The index of the current job in the matrix. **Note:** This number is a zero-based number. The first job's index in the matrix is `0`. |
562+
| `strategy.job-total` | `string` | The total number of jobs in the matrix. **Note:** This number **is not** a zero-based number. For example, for a matrix with four jobs, the value of `job-total` is `4`. |
563563
| `strategy.max-parallel` | `string` | The maximum number of jobs that can run simultaneously when using a `matrix` job strategy. For more information, see "[Workflow syntax for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstrategymax-parallel)." |
564564

565565
### Example contents of the `strategy` context
566566

567-
The following example contents of the `strategy` context is from a build matrix with four jobs, and is taken from the final job. Note the difference between the zero-based `job-index` number, and `job-total` which is not zero-based.
567+
The following example contents of the `strategy` context is from a matrix with four jobs, and is taken from the final job. Note the difference between the zero-based `job-index` number, and `job-total` which is not zero-based.
568568

569569
```yaml
570570
{
@@ -577,7 +577,7 @@ The following example contents of the `strategy` context is from a build matrix
577577

578578
### Example usage of the `strategy` context
579579

580-
This example workflow uses the `strategy.job-index` property to set a unique name for a log file for each job in a build matrix.
580+
This example workflow uses the `strategy.job-index` property to set a unique name for a log file for each job in a matrix.
581581

582582
```yaml{:copy}
583583
name: Test matrix
@@ -602,18 +602,18 @@ jobs:
602602

603603
## `matrix` context
604604

605-
For workflows with a build matrix, the `matrix` context contains the matrix properties defined in the workflow file that apply to the current job. For example, if you configure a build matrix with the `os` and `node` keys, the `matrix` context object includes the `os` and `node` properties with the values that are being used for the current job.
605+
For workflows with a matrix, the `matrix` context contains the matrix properties defined in the workflow file that apply to the current job. For example, if you configure a matrix with the `os` and `node` keys, the `matrix` context object includes the `os` and `node` properties with the values that are being used for the current job.
606606

607607
There are no standard properties in the `matrix` context, only those which are defined in the workflow file.
608608

609609
| Property name | Type | Description |
610610
|---------------|------|-------------|
611-
| `matrix` | `object` | This context is only available for jobs in a build matrix, and changes for each job in a workflow run. You can access this context from any job or step in a workflow. This object contains the properties listed below. |
611+
| `matrix` | `object` | This context is only available for jobs in a matrix, and changes for each job in a workflow run. You can access this context from any job or step in a workflow. This object contains the properties listed below. |
612612
| `matrix.<property_name>` | `string` | The value of a matrix property. |
613613

614614
### Example contents of the `matrix` context
615615

616-
The following example contents of the `matrix` context is from a job in a build matrix that has the `os` and `node` matrix properties defined in the workflow. The job is executing the matrix combination of an `ubuntu-latest` OS and Node.js version `16`.
616+
The following example contents of the `matrix` context is from a job in a matrix that has the `os` and `node` matrix properties defined in the workflow. The job is executing the matrix combination of an `ubuntu-latest` OS and Node.js version `16`.
617617

618618
```yaml
619619
{
@@ -624,7 +624,7 @@ The following example contents of the `matrix` context is from a job in a build
624624

625625
### Example usage of the `matrix` context
626626

627-
This example workflow creates a build matrix with `os` and `node` keys. It uses the `matrix.os` property to set the runner type for each job, and uses the `matrix.node` property to set the Node.js version for each job.
627+
This example workflow creates a matrix with `os` and `node` keys. It uses the `matrix.os` property to set the runner type for each job, and uses the `matrix.node` property to set the Node.js version for each job.
628628

629629
```yaml{:copy}
630630
name: Test matrix

translations/es-ES/content/actions/migrating-to-github-actions/migrating-from-circleci-to-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Tanto CircleCI como {% data variables.product.prodname_actions %} configuran `jo
5050

5151
Tanto CircleCI como {% data variables.product.prodname_actions %} proporcionan un mecanismo para reutilizar y compartir tareas en un flujo de trabajo. CircleCi utiliza un concepto llamado orbes (orbs), escrito en YAML, que proporciona tareas que las personas pueden reutilizar en un flujo de trabajo. {% data variables.product.prodname_actions %} cuenta con componentes reutilizables poderosos y flexibles llamados acciones (actions), los cuales compilas ya sea con archivos de JavaScript o con imagenes de Docker. Puedes crear acciones si escribes tu código personalizado para que interactúe con tu repositorio en la forma que prefieras, lo cual incluye la integración con las API de {% data variables.product.product_name %} y con cualquier API de terceros disponible públicamente. Por ejemplo, una acción puede publicar módulos npm, enviar alertas por SMS cuando se crean propuestas urgentes o implementar un código listo para producción. Para obtener más información, consulta la sección "[Crear acciones](/actions/creating-actions)".
5252

53-
Circle CI puede reutilizar partes de los flujos de trabajo con anclas y alias. {% data variables.product.prodname_actions %} es compatible con las necesidades de reutilización más comunes utilizando matrices de compilación. Para obtener más información acerca de las matrices de compilación, consulta la sección "[Administrar flujos de trabajo complejos](/actions/learn-github-actions/managing-complex-workflows/#using-a-build-matrix)".
53+
Circle CI puede reutilizar partes de los flujos de trabajo con anclas y alias. {% data variables.product.prodname_actions %} supports the most common need for reusability using matrices. For more information about matrices, see "[Using a matrix for your jobs](/actions/using-jobs/using-a-matrix-for-your-jobs)."
5454

5555
## Utilizar imágenes de Docker
5656

translations/es-ES/content/actions/migrating-to-github-actions/migrating-from-jenkins-to-github-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ Jenkins puede ejecutar las `stages` y `steps` en paralelo, mientras que, actualm
8383
| ------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
8484
| [`parallel`](https://jenkins.io/doc/book/pipeline/syntax/#parallel) | [`jobs.<job_id>.strategy.max-parallel`](/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions#jobsjob_idstrategymax-parallel) |
8585

86-
### Matriz de compilaciones
86+
### Matrix
8787

88-
Tanto {% data variables.product.prodname_actions %} como Jenkins te permiten utilizar una matriz de compilaciones para definir diversas combinaciones de sistema.
88+
Both {% data variables.product.prodname_actions %} and Jenkins let you use a matrix to define various system combinations.
8989

9090
| Jenkins | {% data variables.product.prodname_actions %}
9191
| ------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

translations/es-ES/content/actions/migrating-to-github-actions/migrating-from-travis-ci-to-github-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ Travis CI puede utilizar `stages` para ejecutar jobs en paralelo. De forma simil
5959

6060
Tanto Travis CI como {% data variables.product.prodname_actions %} son compatibles con las insignias de estado, lo cual te permite indicar si una compilación pasa o falla. Para obtener más información, consulta la sección "[Agregar una insignia de estado de un flujo de trabajo a tu repositorio](/actions/managing-workflow-runs/adding-a-workflow-status-badge)".
6161

62-
### Utilizar una matriz de compilaciones
62+
### Using a matrix
6363

64-
Tanto Travis CI como {% data variables.product.prodname_actions %} son compatibles con matrices de compilación, lo cual te permite realizar pruebas utilizando combinaciones de sistemas operativos y paquetes de software. Para obtener más información, consulta "[Utilizar una matriz de compilaciones](/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix)".
64+
Travis CI and {% data variables.product.prodname_actions %} both support a matrix, allowing you to perform testing using combinations of operating systems and software packages. For more information, see "[Using a matrix for your jobs](/actions/using-jobs/using-a-matrix-for-your-jobs)."
6565

6666
A continuación podrás encontrar un ejemplo que compara la sintaxis para cada sistema:
6767

translations/es-ES/content/actions/using-jobs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ children:
1313
- /using-jobs-in-a-workflow
1414
- /choosing-the-runner-for-a-job
1515
- /using-conditions-to-control-job-execution
16-
- /using-a-build-matrix-for-your-jobs
16+
- /using-a-matrix-for-your-jobs
1717
- /using-concurrency
1818
- /using-environments-for-jobs
1919
- /running-jobs-in-a-container

translations/es-ES/content/actions/using-jobs/using-a-build-matrix-for-your-jobs.md

Lines changed: 0 additions & 30 deletions
This file was deleted.
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
---
2+
title: Using a matrix for your jobs
3+
shortTitle: Using a matrix
4+
intro: Create a matrix to define variations for each job.
5+
versions:
6+
fpt: '*'
7+
ghes: '*'
8+
ghae: '*'
9+
ghec: '*'
10+
miniTocMaxHeadingLevel: 4
11+
redirect_from:
12+
- /actions/using-jobs/using-a-build-matrix-for-your-jobs
13+
---
14+
15+
{% data reusables.actions.enterprise-beta %}
16+
{% data reusables.actions.enterprise-github-hosted-runners %}
17+
18+
## About matrix strategies
19+
20+
{% data reusables.actions.jobs.about-matrix-strategy %}
21+
22+
## Using a matrix strategy
23+
24+
{% data reusables.actions.jobs.using-matrix-strategy %}
25+
26+
### Example: Using a single-dimension matrix
27+
28+
{% data reusables.actions.jobs.single-dimension-matrix %}
29+
30+
### Example: Using a multi-dimension matrix
31+
32+
{% data reusables.actions.jobs.multi-dimension-matrix %}
33+
34+
### Example: Using contexts to create matrices
35+
36+
{% data reusables.actions.jobs.matrix-from-context %}
37+
38+
## Expanding or adding matrix configurations
39+
40+
{% data reusables.actions.jobs.matrix-include %}
41+
42+
### Example: Expanding configurations
43+
44+
{% data reusables.actions.jobs.matrix-expand-with-include %}
45+
46+
### Example: Adding configurations
47+
48+
{% data reusables.actions.jobs.matrix-add-with-include %}
49+
50+
## Excluding matrix configurations
51+
52+
{% data reusables.actions.jobs.matrix-exclude %}
53+
54+
## Handling failures
55+
56+
{% data reusables.actions.jobs.section-using-a-build-matrix-for-your-jobs-failfast %}
57+
58+
## Defining the maximum number of concurrent jobs
59+
60+
{% data reusables.actions.jobs.section-using-a-build-matrix-for-your-jobs-max-parallel %}

0 commit comments

Comments
 (0)