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

Commit

Permalink
fix typo in 01-explain-syntax
Browse files Browse the repository at this point in the history
`ours` is the possessive pronoun, `our's` is common misspelling of it
  • Loading branch information
kaznovac authored Sep 5, 2020
1 parent 291539a commit b344d7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion responses/01_explain-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Let's take a second to talk about each of the pieces that we see here:
- `name: CI`
- This is the user-defined name for the workflow. This shows up on the Actions tab so we can see which workflows, and their statuses, run on this repository.
- As you can see, our's is currently named `CI`
- As you can see, ours is currently named `CI`
- `on: [push]`
- This defines the **event** that will tigger a workflow on this repository. Currently we are listening for any [push event](https://developer.github.com/v3/activity/events/types/#pushevent) that happens within this repository.
- Also note that this is an array, which means we can trigger this workflow [on more than one event](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/events-that-trigger-workflows#about-workflow-events) if that is our intended behavior.
Expand Down

0 comments on commit b344d7a

Please sign in to comment.