Skip to content

Commit eadcb5f

Browse files
author
pacovich
committed
Uniform GitHub Actions spelling on all .md files
1 parent d32af1d commit eadcb5f

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
In this repo our goal is for you to learn the following
44

5-
- The Essentials of Github Actions
6-
- How to Enable Github Actions in a repo
5+
- The Essentials of GitHub Actions
6+
- How to Enable GitHub Actions in a repo
77
- Understand how GitHub Actions are triggered
8-
- Set up your first github action workflow "hello world"
9-
- Set up your first github action workflow based on Pull Request events
10-
- Set up your first github action workflow based on a push event after a PR merge
8+
- Set up your first GitHub Action workflow "hello world"
9+
- Set up your first GitHub Action workflow based on Pull Request events
10+
- Set up your first GitHub Action workflow based on a Push event after a PR merge

references/essentials.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# Github Actions Essentials
1+
# GitHub Actions Essentials
22

3-
## Understand Github Actions
3+
## Understand GitHub Actions
44

55
- Learn the basics of GitHub Actions, including core concepts and essential terminology [HERE](https://docs.github.com/en/actions/learn-github-actions/understanding-github-actions).
66

7-
- Learn about what Github Action runners are and why are they important [HERE](https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners)
7+
- Learn about what GitHub Actions runners are and why are they important [HERE](https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners)
88

9-
- Understand the Github Action YAML syntax and structure [HERE](https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions)
9+
- Understand the GitHub Actions YAML syntax and structure [HERE](https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions)
1010

1111
## Managing Github Action Settings
1212

13-
- Learn how to enable, disable and manage your github actions [HERE](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository)
13+
- Learn how to enable, disable and manage your GitHub Actions [HERE](https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository)
1414

1515
## Github Actions Events
1616

17-
- Understand what events trigger Github Actions and what context do they have [HERE](https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows)
17+
- Understand what events trigger GitHub Actions and what context do they have [HERE](https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows)

tutorials/01-hello-world/first-github-action.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Introduction
44

5-
You only need a Github repository to create and run a Github Action workflow. In this guide, you'll add a workflow that demonstrates some of the essential features of GitHub Actions.
5+
You only need a GitHub repository to create and run a GitHub Action workflow. In this guide, you'll add a workflow that demonstrates some of the essential features of GitHub Actions.
66

77
The following example shows you how GitHub Actions jobs can be automatically triggered, where they run, and how they can interact with the code in your repository.
88

tutorials/02-simple-ci/traditional-ci.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ test: ## Unit test our code
6262

6363
1. Review our current Open PR for failed CI
6464

65-
1. Lets fix our fix `static_hugo_site/content/elements/text.md` line 36 and 48 by adding one extra dash
65+
1. Lets fix our fix `static_hugo_site/content/elements/text.md` line 36 and 48 by adding one extra dash character
6666

6767
1. Commit file
6868

tutorials/03-reusing-actions/reuse-actions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
1. Review our current Open PR for failed CI
4545

46-
1. Lets fix our fix `static_hugo_site/content/elements/text.md` line 36 and 48 by adding one extra dash
46+
1. Lets fix our fix `static_hugo_site/content/elements/text.md` line 36 and 48 by adding one extra dash character
4747

4848
1. Commit file
4949

tutorials/04-sample-cd/deploy_hugo.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ jobs:
4848

4949
1. Create Secret `MY_GITHUB_TOKEN` in https://github.com/<username>/github-actions-tutorial/settings/secrets/actions/new
5050

51-
1. Commit new cd workflow into main
51+
1. Commit new cd workflow into the main branch
5252

53-
1. Active GitHub Pages. Navigate to your repo settings and in the side menu select Pages
53+
1. Activate GitHub Pages. Navigate to your repo settings and in the side menu select Pages
5454

5555
1. Select the gh-pages as your source branch and /docs for the folder and click on save
5656

0 commit comments

Comments
 (0)