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

Commit bca0ca3

Browse files
authored
Merge pull request #29 from Rfosu2k2/patch-1
Add runs-on details
2 parents 09fc122 + 5886954 commit bca0ca3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

responses/05.0_trigger.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Nice, you just added an action block to your workflow file! Here are some import
33
- `jobs:` is the base component of a workflow run
44
- `build:` is the identifier we're attaching to this job
55
- `name:` is the name of the job, this is displayed on GitHub when the workflow is running
6+
- `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.
67
- `steps:` the linear sequence of operations that make up a job
78
- `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
89
- `uses: ./action-a` provides the relative path to the action we created in the `action-a` directory of the repository

0 commit comments

Comments
 (0)