Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 09fc122

Browse files
authored
Merge pull request #30 from githubtraining/parkerbxyz/patch
Make minor updates to responses
2 parents 7e40f94 + f01c3d2 commit 09fc122

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

responses/02.0_entrypoint-success.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ Nice work adding the `entrypoint.sh` script.
22

33
In `entrypoint.sh`, all we're doing is outputting a "Hello world" message using an environment variable called `MY_NAME`.
44

5-
Next, we'll define a **workflow** that uses the GitHub Action.
65
Next, we'll define the `action.yml` file which contains the metadata for our action.
76

87
### action.yml

responses/05.0_trigger.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Nice, you just added an action block to your workflow file! Here are some import
55
- `name:` is the name of the job, this is displayed on GitHub when the workflow is running
66
- `steps:` the linear sequence of operations that make up a job
77
- `uses: actions/checkout@v1` uses a community action called [`checkout`](https://github.com/actions/checkout) to allow the workflow to access the contents of the repository
8-
- `uses: ./action-a` provides the relative path the action we've created in the `action-a` directory of the repository
8+
- `uses: ./action-a` provides the relative path to the action we created in the `action-a` directory of the repository
99
- `with`: is used to specify the input variables that will be available to your action in the runtime environment. In this case, the input variable is `MY_NAME`, and it is currently initialized to `"Mona"`.
1010

1111
### Your action has been triggered!
@@ -24,7 +24,7 @@ The status of your action is shown here in the pull request (look for **All chec
2424

2525
### :keyboard: Activity: See your action trigger the workflow
2626

27-
1. You've done the work, now sit back and see your action trigger the workflow!
27+
You've done the work, now sit back and see your action trigger the workflow!
2828

2929
<hr>
3030
<h3 align="center">I will respond when I detect your action has run and reported a status.</h3>

responses/07.0_workflow-finished.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In this repository:
1717

1818
Outside of this repository:
1919

20-
- Review the [GitHub Actions documentation](https://help.github.com/articles/about-github-actions) on the GitHub Developer site.
20+
- Review the [GitHub Actions documentation](https://docs.github.com/actions/learn-github-actions) on the GitHub Developer site.
2121
- Use existing actions from the [GitHub Marketplace](https://github.com/marketplace/actions).
2222
- Use existing actions from GitHub's [official actions community](https://github.com/actions).
2323
- Use actions created by others in [awesome-actions](https://github.com/sdras/awesome-actions).

0 commit comments

Comments
 (0)