Skip to content

Commit 72ddcce

Browse files
authored
Update 2-github-actions-workflows-ci.md
1 parent 71d8195 commit 72ddcce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

learn-pr/github/github-actions-ci/includes/2-github-actions-workflows-ci.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ To implement this process, you learn how to:
55
- Create a workflow from a template.
66
- Avoid duplication by using reusable workflows.
77
- Identify the event that triggered a workflow.
8-
- Understand GitHub Actions workflow logs.
8+
- Use GitHub Actions workflow logs.
99
- Test against multiple targets.
1010
- Separate build and test jobs.
1111
- Save and access build artifacts.
@@ -82,7 +82,7 @@ A team of developers can benefit from using reusable workflows to streamline and
8282

8383
As teams scale and projects grow, it's common to see the same steps repeated across multiple workflow files. These steps might include code checkout, dependency installation, testing, and deployment. This kind of duplication not only clutters your code base but also increases maintenance time when code changes are required. Reusable workflows solve this problem by allowing you to define automation logic once, and then call the logic from other workflows.
8484

85-
Reusable workflows are special GitHub Actions workflows that other workflows can call, much like functions in programming. You create them to share repeated logic like build steps, testing procedures, or deployment strategies. After you create a reusable workflow, you can reference it from any other workflow in the same repository or even in different repositories.
85+
Reusable workflows are special GitHub Actions workflows that other workflows can call, similar to functions in programming. You create them to share repeated logic like build steps, testing procedures, or deployment strategies. After you create a reusable workflow, you can reference it from any other workflow in the same repository or even in different repositories.
8686

8787
:::image type="content" source="../media/reusable-workflow.png" alt-text="Diagram that shows the concept of reusable workflows in GitHub Actions. Multiple repositories or workflows can reference a central workflow." border="false":::
8888

@@ -115,7 +115,7 @@ Imagine that your organization has 10 microservices. All 10 microservices need t
115115
- Lint code
116116
- Deploy to a specific environment
117117

118-
Without reusable workflows, every repo contains duplicated logic that list the repeated steps in each workflow..
118+
Without reusable workflows, every repo contains duplicated logic that list the repeated steps in each workflow.
119119

120120
If you use reusable workflows:
121121

0 commit comments

Comments
 (0)