Skip to content

Commit 9a15a7e

Browse files
authored
Merge pull request #35636 from github/repo-sync
Repo sync
2 parents 74470dc + 0fd09b3 commit 9a15a7e

File tree

366 files changed

+2489
-2489
lines changed

Some content is hidden

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

366 files changed

+2489
-2489
lines changed

content/actions/about-github-actions/about-continuous-deployment-with-github-actions.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ topics:
2222

2323
_Continuous deployment_ (CD) is the practice of using automation to publish and deploy software updates. As part of the typical CD process, the code is automatically built and tested before deployment.
2424

25-
Continuous deployment is often coupled with continuous integration. For more information about continuous integration, see "[AUTOTITLE](/actions/automating-builds-and-tests/about-continuous-integration)".
25+
Continuous deployment is often coupled with continuous integration. For more information about continuous integration, see [AUTOTITLE](/actions/automating-builds-and-tests/about-continuous-integration).
2626

2727
## About continuous deployment using {% data variables.product.prodname_actions %}
2828

2929
You can set up a {% data variables.product.prodname_actions %} workflow to deploy your software product. To verify that your product works as expected, your workflow can build the code in your repository and run your tests before deploying.
3030

31-
You can configure your CD workflow to run when a {% data variables.product.product_name %} event occurs (for example, when new code is pushed to the default branch of your repository), on a set schedule, manually, or when an external event occurs using the repository dispatch webhook. For more information about when your workflow can run, see "[AUTOTITLE](/actions/using-workflows/events-that-trigger-workflows)."
31+
You can configure your CD workflow to run when a {% data variables.product.product_name %} event occurs (for example, when new code is pushed to the default branch of your repository), on a set schedule, manually, or when an external event occurs using the repository dispatch webhook. For more information about when your workflow can run, see [AUTOTITLE](/actions/using-workflows/events-that-trigger-workflows).
3232

33-
{% data variables.product.prodname_actions %} provides features that give you more control over deployments. For example, you can use environments to require approval for a job to proceed, restrict which branches can trigger a workflow, or limit access to secrets. You can use concurrency to limit your CD pipeline to a maximum of one in-progress deployment and one pending deployment. For more information about these features, see "[AUTOTITLE](/actions/deployment/about-deployments/deploying-with-github-actions)" and "[AUTOTITLE](/actions/deployment/targeting-different-environments/managing-environments-for-deployment)."
33+
{% data variables.product.prodname_actions %} provides features that give you more control over deployments. For example, you can use environments to require approval for a job to proceed, restrict which branches can trigger a workflow, or limit access to secrets. You can use concurrency to limit your CD pipeline to a maximum of one in-progress deployment and one pending deployment. For more information about these features, see [AUTOTITLE](/actions/deployment/about-deployments/deploying-with-github-actions) and [AUTOTITLE](/actions/deployment/targeting-different-environments/managing-environments-for-deployment).
3434

3535
## Using OpenID Connect to access cloud resources
3636

@@ -42,7 +42,7 @@ You can configure your CD workflow to run when a {% data variables.product.produ
4242

4343
## Further reading
4444

45-
* "[AUTOTITLE](/actions/use-cases-and-examples/deploying)"
46-
* "[AUTOTITLE](/actions/deployment/about-deployments/deploying-with-github-actions)"
47-
* "[AUTOTITLE](/actions/deployment/targeting-different-environments/managing-environments-for-deployment)"{% ifversion fpt or ghec %}
48-
* "[AUTOTITLE](/billing/managing-billing-for-github-actions)"{% endif %}
45+
* [AUTOTITLE](/actions/use-cases-and-examples/deploying)
46+
* [AUTOTITLE](/actions/deployment/about-deployments/deploying-with-github-actions)
47+
* [AUTOTITLE](/actions/deployment/targeting-different-environments/managing-environments-for-deployment){% ifversion fpt or ghec %}
48+
* [AUTOTITLE](/billing/managing-billing-for-github-actions){% endif %}

content/actions/about-github-actions/about-continuous-integration-with-github-actions.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,17 @@ Building and testing your code requires a server. You can build and test updates
3131

3232
## About continuous integration using {% data variables.product.prodname_actions %}
3333

34-
CI using {% data variables.product.prodname_actions %} offers workflows that can build the code in your repository and run your tests. Workflows can run on {% data variables.product.prodname_dotcom %}-hosted virtual machines, or on machines that you host yourself. For more information, see "[AUTOTITLE](/actions/using-github-hosted-runners/about-github-hosted-runners)" and "[AUTOTITLE](/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners)."
34+
CI using {% data variables.product.prodname_actions %} offers workflows that can build the code in your repository and run your tests. Workflows can run on {% data variables.product.prodname_dotcom %}-hosted virtual machines, or on machines that you host yourself. For more information, see [AUTOTITLE](/actions/using-github-hosted-runners/about-github-hosted-runners) and [AUTOTITLE](/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners).
3535

3636
You can configure your CI workflow to run when a {% data variables.product.prodname_dotcom %} event occurs (for example, when new code is pushed to your repository), on a set schedule, or when an external event occurs using the repository dispatch webhook.
3737

3838
{% data variables.product.product_name %} runs your CI tests and provides the results of each test in the pull request, so you can see whether the change in your branch introduces an error. When all CI tests in a workflow pass, the changes you pushed are ready to be reviewed by a team member or merged. When a test fails, one of your changes may have caused the failure.
3939

4040
When you set up CI in your repository, {% data variables.product.product_name %} analyzes the code in your repository and recommends CI workflows based on the language and framework in your repository. For example, if you use [Node.js](https://nodejs.org/en/), {% data variables.product.product_name %} will suggest a workflow template that installs your Node.js packages and runs your tests. You can use the CI workflow template suggested by {% data variables.product.product_name %}, customize the suggested workflow template, or create your own custom workflow file to run your CI tests.
4141

42-
In addition to helping you set up CI workflows for your project, you can use {% data variables.product.prodname_actions %} to create workflows across the full software development life cycle. For example, you can use actions to deploy, package, or release your project. For more information, see "[AUTOTITLE](/actions/learn-github-actions)."
42+
In addition to helping you set up CI workflows for your project, you can use {% data variables.product.prodname_actions %} to create workflows across the full software development life cycle. For example, you can use actions to deploy, package, or release your project. For more information, see [AUTOTITLE](/actions/learn-github-actions).
4343

44-
For a definition of common terms, see "[AUTOTITLE](/actions/learn-github-actions/understanding-github-actions)."
44+
For a definition of common terms, see [AUTOTITLE](/actions/learn-github-actions/understanding-github-actions).
4545

4646
## Workflow templates
4747

@@ -51,5 +51,5 @@ Browse the complete list of CI workflow templates offered by {% data variables.p
5151

5252
## Further reading
5353

54-
* "[AUTOTITLE](/actions/use-cases-and-examples/building-and-testing)"{% ifversion fpt or ghec %}
55-
* "[AUTOTITLE](/billing/managing-billing-for-github-actions)"{% endif %}
54+
* [AUTOTITLE](/actions/use-cases-and-examples/building-and-testing){% ifversion fpt or ghec %}
55+
* [AUTOTITLE](/billing/managing-billing-for-github-actions){% endif %}

content/actions/about-github-actions/understanding-github-actions.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ You must host your own Linux, Windows, or macOS virtual machines to run workflow
3939

4040
{% ifversion ghec or ghes %}
4141

42-
For more information about introducing {% data variables.product.prodname_actions %} to your enterprise, see "[AUTOTITLE](/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/introducing-github-actions-to-your-enterprise)."
42+
For more information about introducing {% data variables.product.prodname_actions %} to your enterprise, see [AUTOTITLE](/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/introducing-github-actions-to-your-enterprise).
4343

4444
{% endif %}
4545

@@ -53,9 +53,9 @@ You can configure a {% data variables.product.prodname_actions %} **workflow** t
5353

5454
{% data reusables.actions.about-workflows-long %}
5555

56-
You can reference a workflow within another workflow. For more information, see "[AUTOTITLE](/actions/using-workflows/reusing-workflows)."
56+
You can reference a workflow within another workflow. For more information, see [AUTOTITLE](/actions/using-workflows/reusing-workflows).
5757

58-
For more information, see "[AUTOTITLE](/actions/using-workflows)."
58+
For more information, see [AUTOTITLE](/actions/using-workflows).
5959

6060
### Events
6161

@@ -71,7 +71,7 @@ You can configure a job's dependencies with other jobs; by default, jobs have no
7171

7272
For example, you might configure multiple build jobs for different architectures without any job dependencies and a packaging job that depends on those builds. The build jobs run in parallel, and once they complete successfully, the packaging job runs.
7373

74-
For more information, see "[AUTOTITLE](/actions/using-jobs)."
74+
For more information, see [AUTOTITLE](/actions/using-jobs).
7575

7676
### Actions
7777

@@ -81,20 +81,20 @@ You can write your own actions, or you can find actions to use in your workflows
8181

8282
{% data reusables.actions.internal-actions-summary %}
8383

84-
For more information on actions, see "[AUTOTITLE](/actions/creating-actions)."
84+
For more information on actions, see [AUTOTITLE](/actions/creating-actions).
8585

8686
### Runners
8787

8888
A **runner** is a server that runs your workflows when they're triggered. Each runner can run a single **job** at a time.
8989
{% ifversion ghes %} You must host your own runners for {% data variables.product.product_name %}.
9090
{% 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.
9191

92-
{% ifversion actions-hosted-runners %} {% data variables.product.prodname_dotcom %} also offers {% data variables.actions.hosted_runner %}s, which are available in larger configurations. For more information, see "[AUTOTITLE](/actions/using-github-hosted-runners/using-larger-runners)."
92+
{% ifversion actions-hosted-runners %} {% data variables.product.prodname_dotcom %} also offers {% data variables.actions.hosted_runner %}s, which are available in larger configurations. For more information, see [AUTOTITLE](/actions/using-github-hosted-runners/using-larger-runners).
9393
{% endif %}
9494
If you need a different operating system or require a specific hardware configuration, you can host your own runners.
9595
{% endif %}
9696

97-
For more information{% ifversion fpt or ghec %} about self-hosted runners{% endif %}, see "[AUTOTITLE](/actions/hosting-your-own-runners)."
97+
For more information{% ifversion fpt or ghec %} about self-hosted runners{% endif %}, see [AUTOTITLE](/actions/hosting-your-own-runners).
9898

9999
## Next steps
100100

@@ -104,5 +104,5 @@ For more information{% ifversion fpt or ghec %} about self-hosted runners{% endi
104104

105105
## Further reading
106106

107-
* "[AUTOTITLE](/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/about-github-actions-for-enterprises)"
107+
* [AUTOTITLE](/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/about-github-actions-for-enterprises)
108108
{% endif %}

content/actions/administering-github-actions/sharing-workflows-secrets-and-runners-with-your-organization.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Your organization can share workflows by reusing the workflows exactly or by cre
4040

4141
### Using workflow templates
4242

43-
{% data reusables.actions.workflow-organization-templates %} For more information, see "[AUTOTITLE](/actions/using-workflows/creating-starter-workflows-for-your-organization)."
43+
{% data reusables.actions.workflow-organization-templates %} For more information, see [AUTOTITLE](/actions/using-workflows/creating-starter-workflows-for-your-organization).
4444

4545
## Sharing secrets and variables within an organization
4646

@@ -55,14 +55,14 @@ When creating a secret or variable in an organization, you can use a policy to l
5555
{% data reusables.actions.sidebar-secrets-and-variables %}
5656
1. Click the **Secrets** or **Variables** tab, and create the secret or variable with your desired values and options.
5757

58-
For more information, see "[AUTOTITLE](/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization)" or "[AUTOTITLE](/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization)."
58+
For more information, see [AUTOTITLE](/actions/security-guides/using-secrets-in-github-actions#creating-secrets-for-an-organization) or [AUTOTITLE](/actions/learn-github-actions/variables#creating-configuration-variables-for-an-organization).
5959

6060
## Share self-hosted runners within an organization
6161

6262
Organization owners can add their self-hosted runners to groups, and then create policies that control which repositories can access the group.
6363

64-
For more information, see "[AUTOTITLE](/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups)."
64+
For more information, see [AUTOTITLE](/actions/hosting-your-own-runners/managing-self-hosted-runners/managing-access-to-self-hosted-runners-using-groups).
6565

6666
## Next steps
6767

68-
To continue learning about {% data variables.product.prodname_actions %}, see "[AUTOTITLE](/actions/using-workflows/creating-starter-workflows-for-your-organization)."
68+
To continue learning about {% data variables.product.prodname_actions %}, see [AUTOTITLE](/actions/using-workflows/creating-starter-workflows-for-your-organization).

0 commit comments

Comments
 (0)