Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion responses/07_add-input-params.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func main() {
fmt.Println("Hello " + firstGreeting)
fmt.Println("Hello " + secondGreeting)

// Someimes inputs are not "required" and we can build around that
// Sometimes inputs are not "required" and we can build around that
if thirdGreeting != "" {
fmt.Println("Hello " + thirdGreeting)
}
Expand Down
2 changes: 1 addition & 1 deletion responses/07_update-source-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Great job 👍 next let's update our source code to consume the inputs that are
fmt.Println("Hello " + firstGreeting)
fmt.Println("Hello " + secondGreeting)

// Someimes inputs are not "required" and we can build around that
// Sometimes inputs are not "required" and we can build around that
if thirdGreeting != "" {
fmt.Println("Hello " + thirdGreeting)
}
Expand Down
4 changes: 2 additions & 2 deletions responses/11_edit-workflow.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Use the cat-fat action
## Use the cat-fact action

At this point we can't expect much from our workflow, if you remember all of its contents are commented out. Let's go ahead and fix that now so that we can see our action fetch us a cat fact.

Expand Down Expand Up @@ -37,4 +37,4 @@ Let's change the tigger and add the cat fact action

---

I'll respond when you push changes to this pull request.
I'll respond when you push changes to this pull request.
4 changes: 2 additions & 2 deletions responses/14_create-metadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Our action will also need to accept an input so that we can let the user specify
```yml
name: "issue maker"

description: "create and issue with a cat fact as the body"
description: "create an issue with a cat fact as the body"

inputs:
issueTitle:
Expand All @@ -62,4 +62,4 @@ Our action will also need to accept an input so that we can let the user specify

---

I'll respond when you push changes to this pull request.
I'll respond when you push changes to this pull request.