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

Commit 4beb1b0

Browse files
Merge pull request #18 from zhiliangxu/patch-1
Fix a syntax error in main.js
2 parents 446f738 + 82a7c34 commit 4beb1b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

responses/07_add-input-params.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Now that there are inputs in the action's metadata we can use the `@actions/core
8181
```javascript
8282
const core = require("@actions/core");
8383
84-
const firstGreeting = core.getInput("first-greeting"):
84+
const firstGreeting = core.getInput("first-greeting");
8585
const secondGreeting = core.getInput("second-greeting");
8686
const thirdGreeting = core.getInput("third-greeting");
8787

0 commit comments

Comments
 (0)