Skip to content

Commit 60ff6a4

Browse files
authored
Merge pull request #39267 from github/repo-sync
Repo sync
2 parents dd233ea + a423eaf commit 60ff6a4

File tree

33 files changed

+45
-113
lines changed

33 files changed

+45
-113
lines changed

content/actions/concepts/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ children:
1111
- /workflows-and-actions
1212
- /runners
1313
- /security
14-
- /use-cases
1514
- /about-github-actions-metrics
15+
redirect_from:
16+
- /actions/concepts/use-cases
1617
---

content/actions/concepts/use-cases/about-packaging-with-github-actions.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

content/actions/concepts/use-cases/index.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

content/actions/concepts/use-cases/using-github-actions-for-project-management.md

Lines changed: 0 additions & 41 deletions
This file was deleted.

content/actions/concepts/workflows-and-actions/about-workflows.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ redirect_from:
1313
- /actions/using-workflows/advanced-workflow-features
1414
- /actions/using-workflows/about-workflows
1515
- /actions/writing-workflows/about-workflows
16+
- /actions/concepts/use-cases/using-github-actions-for-project-management
1617
topics:
1718
- Workflows
1819
layout: inline

content/actions/how-tos/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: How-tos for GitHub Actions
33
shortTitle: How-tos
4-
intro: "Learn how to accomplish specific goals with GitHub Actions."
4+
intro: Learn how to accomplish specific goals with GitHub Actions.
55
versions:
66
fpt: '*'
77
ghes: '*'
@@ -15,6 +15,6 @@ children:
1515
- /hosting-your-own-runners
1616
- /security-for-github-actions
1717
- /use-cases-and-examples
18-
- /migrating-to-github-actions
1918
- /administering-github-actions
20-
---
19+
---
20+

content/actions/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ featuredLinks:
1010
- /actions/how-tos/writing-workflows
1111
- /actions/how-tos/use-cases-and-examples
1212
- /actions/concepts/overview/continuous-integration
13-
- /actions/concepts/use-cases/deploying-with-github-actions
14-
- /actions/concepts/use-cases/about-packaging-with-github-actions
13+
- /actions/tutorials/deploying-with-github-actions
14+
- /packages/managing-github-packages-using-github-actions-workflows/publishing-and-installing-a-package-with-github-actions
1515
- /actions/how-tos/monitoring-and-troubleshooting-workflows
1616
guideCards:
1717
- /actions/how-tos/writing-workflows/using-workflow-templates
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ shortTitle: Extending GitHub Actions Importer
1414
redirect_from:
1515
- /actions/migrating-to-github-actions/automated-migrations/extending-github-actions-importer-with-custom-transformers
1616
- /actions/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/extending-github-actions-importer-with-custom-transformers
17+
- /actions/how-tos/migrating-to-github-actions/using-github-actions-importer-to-automate-migrations/extending-github-actions-importer-with-custom-transformers
1718
---
1819

1920
[Legal notice](#legal-notice)

content/actions/reference/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,6 @@ children:
2626
- /self-hosted-runners-reference
2727
- /usage-limits-for-self-hosted-runners
2828
- /supplemental-arguments-and-settings
29+
- /extending-github-actions-importer-with-custom-transformers
2930
---
31+

content/actions/concepts/use-cases/about-service-containers.md renamed to content/actions/tutorials/communicating-with-docker-service-containers.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
---
2-
title: About service containers
3-
intro: 'You can use service containers to connect databases, web services, memory caches, and other tools to your workflow.'
2+
title: Communicating with Docker service containers
3+
shortTitle: Docker service containers
4+
intro: Learn how to use Docker service containers to connect databases, web services, memory caches, and other tools to your workflow.
45
redirect_from:
56
- /actions/automating-your-workflow-with-github-actions/about-service-containers
67
- /actions/configuring-and-managing-workflows/about-service-containers
78
- /actions/guides/about-service-containers
89
- /actions/using-containerized-services/about-service-containers
910
- /actions/use-cases-and-examples/using-containerized-services/about-service-containers
11+
- /actions/concepts/use-cases/about-service-containers
1012
versions:
1113
fpt: '*'
1214
ghes: '*'
@@ -17,18 +19,14 @@ topics:
1719
- Docker
1820
---
1921

20-
{% data reusables.actions.enterprise-github-hosted-runners %}
21-
22-
## About service containers
22+
## Communicating with Docker service containers
2323

2424
Service containers are Docker containers that provide a simple and portable way for you to host services that you might need to test or operate your application in a workflow. For example, your workflow might need to run integration tests that require access to a database and memory cache.
2525

2626
You can configure service containers for each job in a workflow. {% data variables.product.prodname_dotcom %} creates a fresh Docker container for each service configured in the workflow, and destroys the service container when the job completes. Steps in a job can communicate with all service containers that are part of the same job. However, you cannot create and use service containers inside a composite action.
2727

2828
{% data reusables.actions.docker-container-os-support %}
2929

30-
## Communicating with service containers
31-
3230
You can configure jobs in a workflow to run directly on a runner machine or in a Docker container. Communication between a job and its service containers is different depending on whether a job runs directly on the runner machine or in a container.
3331

3432
### Running jobs in a container

0 commit comments

Comments
 (0)