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

Commit 5886954

Browse files
authored
Merge branch 'main' into patch-1
2 parents 1915c4f + 09fc122 commit 5886954

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

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
@@ -6,7 +6,7 @@ Nice, you just added an action block to your workflow file! Here are some import
66
- `runs-on:` defines the type of machine to run the job on. The machine can be either a GitHub-hosted runner or a self-hosted runner.
77
- `steps:` the linear sequence of operations that make up a job
88
- `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
9-
- `uses: ./action-a` provides the relative path the action we've created in the `action-a` directory of the repository
9+
- `uses: ./action-a` provides the relative path to the action we created in the `action-a` directory of the repository
1010
- `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"`.
1111

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

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

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

3030
<hr>
3131
<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)